ewmscp  ..
Public Member Functions | List of all members
delayAdvisingError Class Reference

class for exceptions that advise for delays Exceptions of this kind are to be thrown when circumstances advise that files with the same extension as the curren one should be processed after a delay. More...

#include <inputHandler.h>

Inheritance diagram for delayAdvisingError:
[legend]
Collaboration diagram for delayAdvisingError:
[legend]

Public Member Functions

 delayAdvisingError (const std::string &aWhat)
 
 delayAdvisingError (const char *aWhat)
 
 ~delayAdvisingError () override=default
 

Detailed Description

class for exceptions that advise for delays Exceptions of this kind are to be thrown when circumstances advise that files with the same extension as the curren one should be processed after a delay.

Typical case: file changes during reading. Should only be thrown by input handlers.

Definition at line 22 of file inputHandler.h.

Constructor & Destructor Documentation

◆ delayAdvisingError() [1/2]

delayAdvisingError::delayAdvisingError ( const std::string &  aWhat)
inline

Definition at line 24 of file inputHandler.h.

24 : std::runtime_error(aWhat) {};

◆ delayAdvisingError() [2/2]

delayAdvisingError::delayAdvisingError ( const char *  aWhat)
inline

Definition at line 25 of file inputHandler.h.

25 : std::runtime_error(aWhat) {};

◆ ~delayAdvisingError()

delayAdvisingError::~delayAdvisingError ( )
overridedefault

The documentation for this class was generated from the following file: