mirror of
https://github.com/cookiengineer/audacity
synced 2025-04-30 23:59:41 +02:00
27 lines
583 B
C++
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
|