summaryrefslogtreecommitdiff
path: root/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'error.h')
-rw-r--r--error.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/error.h b/error.h
index ca5663a9..d5107f6d 100644
--- a/error.h
+++ b/error.h
@@ -20,12 +20,6 @@ class error : public std::exception {
}
};
-class amount_error : public error {
- public:
- amount_error(const std::string& reason) throw() : error(reason) {}
- virtual ~amount_error() throw() {}
-};
-
class compute_error : public error {
public:
compute_error(const std::string& reason) throw() : error(reason) {}