1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-04-30 23:59:41 +02:00
audacity/src/UserException.h
Emily Mabrey 40d4883233
Revert "Replace header guards with #pragma once"
This reverts commit a6bc896e246d48821ff7ae70d572aefcf0cbedd6.
2021-08-24 16:57:24 -04:00

27 lines
583 B
C++

/*!
@file UserException.h
@brief An AudacityException with no visible message
Created by Paul Licameli on 11/27/16.
*/
#ifndef __AUDACITY_USER_EXCEPTION__
#define __AUDACITY_USER_EXCEPTION__
#include "AudacityException.h"
//! Can be thrown when user cancels operations, as with a progress dialog. Delayed handler does nothing
/*! This class does not inherit from MessageBoxException. */
class TENACITY_DLL_API UserException final : public AudacityException
{
public:
UserException() {}
~UserException() override;
void DelayedHandlerAction() override;
};
#endif