Changeset 1652 for code/branches/gui/src/core
- Timestamp:
- Jul 28, 2008, 8:45:31 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/gui/src/core/Exception.h
r1645 r1652 53 53 FileNotFound, 54 54 PluginsNotFound, 55 InitialisationFailed, 55 56 NotImplemented 56 57 }; … … 114 115 case Exception::PluginsNotFound: 115 116 return "PluginsNotFound"; 117 case Exception::InitialisationFailed: 118 return "InitialisationFailed"; 116 119 case Exception::NotImplemented: 117 120 return "NotImplemented"; … … 125 128 typedef SpecificException<Exception::FileNotFound> FileNotFoundException; 126 129 typedef SpecificException<Exception::PluginsNotFound> PluginsNotFoundException; 130 typedef SpecificException<Exception::InitialisationFailed> InitialisationFailedException; 127 131 typedef SpecificException<Exception::NotImplemented> NotImplementedException; 128 132
Note: See TracChangeset
for help on using the changeset viewer.