28 (
const std::string &meth, 
const std::string &msg):
 
   29     message(msg), method(meth)
 
   34     message(rhs.message), method(rhs.method)
 
The abstract base class for all exceptions in CLASSIC.
 
virtual const std::string & what() const
Return the message string for the exception.
 
virtual ~ClassicException()
 
virtual const std::string & where() const
Return the name of the method or function which detected the exception.
 
const std::string message