#ifndef _io_ZHAireSIOException_h_ #define _io_ZHAireSIOException_h_ //static const char CVSId_io_ZHAireSIOException [] = // "$Id$"; #include namespace io { /** \class ZHAireSIOException ZHAireSIOException.h "io/ZHAireSIOException.h" \brief Base for exceptions in the ZHAireS reader \ingroup ZHAireS */ class ZHAireSIOException : public utl::IOFailureException { public: /// Construct ZHAireS IO exception with message ZHAireSIOException (const std::string message = std::string()) : IOFailureException (message) { } /// Retrieve verbose exception name virtual std::string GetExceptionName() const {return "ZHAireS IO exception";} }; // ZHAireSIOException } // io #endif // _io_ZHAireSIOException_h_ // Configure (x)emacs for this file ... // Local Variables: // mode: c++ // End: