#ifndef LIBRARY_FULL_EXCEPTION_H #define LIBRARY_FULL_EXCEPTION_H #include "Exception.h" class LibraryFullException : public Exception { public: LibraryFullException(string newmsg): Exception(newmsg){} }; #endif