/** \file Exceptions in CONEX io \author Ralf Ulrich \version $Id: CONEXIOException.h 14757 2009-09-24 21:48:36Z munger $ \date Thu Apr 7 17:16:49 CEST 2005 */ #ifndef _io_CONEXIOException_h_ #define _io_CONEXIOException_h_ static const char CVSId_io_CONEXIOException [] = "$Id: CONEXIOException.h 14757 2009-09-24 21:48:36Z munger $"; #include namespace io { /** \class CONEXIOException CONEXIOException.h "io/CONEXIOException.h" \brief Base for exceptions in the CORSIKA reader \ingroup conex */ class CONEXIOException : public utl::IOFailureException { public: /// Construct CONEX IO exception with message CONEXIOException (const std::string message = std::string()) : IOFailureException (message) { } /// Retrieve verbose exception name virtual std::string GetExceptionName() const {return "CONEX IO exception";} }; // CONEXIOException } // io #endif // _io_CONEXIOException_h_ // Configure (x)emacs for this file ... // Local Variables: // mode: c++ // End: