FONTAINE 1.0
|
00001 // 00002 // The Fontaine Font Analysis Project 00003 // 00004 // Copyright (c) 2009 by Edward H. Trager 00005 // All Rights Reserved 00006 // 00007 // Released under the GNU GPL version 2.0 or later. 00008 // 00009 00011 // 00012 // A version of this file was originally part of the MADELINE 2 program 00013 // written by Edward H. Trager and Ritu Khanna 00014 // Copyright (c) 2005 by the Regents of the University of Michigan. 00015 // and released under the GNU General Public License v. 2.0 or later. 00016 // 00018 // 00019 // 2006.12.18.ET Restructured as a class derived from Message 00020 // 00021 00022 // 00023 // Exception.h 00024 // 00025 00026 #ifndef EXCEPTION_INCLUDED 00027 #define EXCEPTION_INCLUDED 00028 00029 #include "Message.h" 00030 00031 class Exception : public Message{ 00032 00033 private: 00034 00035 static const char *_exceptionSalutation; 00036 00037 public: 00038 00039 Exception(const char *const methodName, const char *format,...); 00040 00041 }; 00042 00043 #endif 00044