Store username in Session.
[dftpd.git] / Exceptions.hpp
blobdb1c542206877915dcf62e87d9f4fcef02819c95
1 #ifndef __DFTPD__EXCEPTIONS_HPP__
2 #define __DFTPD__EXCEPTIONS_HPP__
4 class ConnectionTerminated {};
5 class SyntaxError {};
6 class QuitRequested {};
8 extern ConnectionTerminated ConnectionTerminatedException;
9 extern SyntaxError SyntaxErrorException;
10 extern QuitRequested QuitRequestedException;
12 #endif