diff options
| author | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-16 18:57:34 +0100 |
|---|---|---|
| committer | Robin Haberkorn <robin.haberkorn@googlemail.com> | 2012-11-16 18:57:34 +0100 |
| commit | 597497938a96b14f327345adb00dfcfd080208a3 (patch) | |
| tree | d5ce78df6c5a234dc0ffa19c6357d805555f5122 /goto.h | |
| parent | de99e1068e3158866c0a537c27f035ae3d350d1a (diff) | |
support different kinds of runtime errors (using C++ exceptions)
* also added some additional range checks (e.g. X command)
Diffstat (limited to 'goto.h')
| -rw-r--r-- | goto.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -15,12 +15,12 @@ public: StateLabel(); private: - State *custom(gchar chr); + State *custom(gchar chr) throw (Error); }; class StateGotoCmd : public StateExpectString { private: - State *done(const gchar *str); + State *done(const gchar *str) throw (Error); }; namespace States { |
