diff options
author | Mike Buland <eichlan@xagasoft.com> | 2006-08-04 20:37:14 +0000 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2006-08-04 20:37:14 +0000 |
commit | eccf96035df06287a4a08146741772c88545d76a (patch) | |
tree | 735dffc3f7615f950f0ab1cdc16e2c0f49f28f4f /src/builder.cpp | |
parent | 395a6409a3f65d7c3c395bf2adae1c0c8caa7c5b (diff) | |
download | build-eccf96035df06287a4a08146741772c88545d76a.tar.gz build-eccf96035df06287a4a08146741772c88545d76a.tar.bz2 build-eccf96035df06287a4a08146741772c88545d76a.tar.xz build-eccf96035df06287a4a08146741772c88545d76a.zip |
Updated error reporting, fixed the command line params, they work now.
Diffstat (limited to '')
-rw-r--r-- | src/builder.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/builder.cpp b/src/builder.cpp index 65ae0c2..3bcd593 100644 --- a/src/builder.cpp +++ b/src/builder.cpp | |||
@@ -558,3 +558,8 @@ void cleanList( std::list<std::string> &lst ) | |||
558 | } | 558 | } |
559 | } | 559 | } |
560 | 560 | ||
561 | void Builder::error( const std::string &err ) | ||
562 | { | ||
563 | throw BuildException( err.c_str() ); | ||
564 | } | ||
565 | |||