2 This file is part of libmspframework
3 Copyright © 2006 Mikko Rasa, Mikkosoft Productions
4 Distributed under the LGPL
6 #ifndef MSP_FRAMEWORK_ERRORS_H_
7 #define MSP_FRAMEWORK_ERRORS_H_
13 class UsageError: public Msp::Exception
16 UsageError(bool b=true): Exception(""), brief(b) { }
17 bool get_brief() const { return brief; }