| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- /**
- * Copyright (c) 2013, James Nutaro
- * All rights reserved.
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions are met:
- *
- * 1. Redistributions of source code must retain the above copyright notice, this
- * list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright notice,
- * this list of conditions and the following disclaimer in the documentation
- * and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
- * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
- * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- *
- * The views and conclusions contained in the software and documentation are those
- * of the authors and should not be interpreted as representing official policies,
- * either expressed or implied, of the FreeBSD Project.
- *
- * Bugs, comments, and questions can be sent to nutaro@gmail.com
- */
- #ifndef _adevs_exception_h_
- #define _adevs_exception_h_
- #include <string>
- #include <exception>
- namespace adevs
- {
- /**
- * The adevs::exception class is derived from the standard template
- * library exception class.
- */
- class exception: public std::exception
- {
- public:
- /**
- * Create an exception with an error message and, if appropriate,
- * a pointer to the model that created the error. To avoid
- * templated exceptions, the model pointer is just a void*.
- */
- exception(const char* msg, void* model = NULL):
- std::exception(),
- msg(msg),
- model(model)
- {}
- /// Copy constructor.
- exception(const adevs::exception& src):
- std::exception(src),
- msg(src.msg),
- model(src.model)
- {}
- /// Get the error message.
- const char* what() const throw()
- {
- return msg.c_str();
- }
- /// Get a pointer to the model that created the error.
- void* who() const { return model; }
- /// Destructor.
- ~exception() throw(){}
- private:
- std::string msg;
- void* model;
- };
- /**
- * The unsupported method exception is raised if an optional virtual method
- * is not supported by a model.
- */
- class method_not_supported_exception:
- public exception
- {
- public:
- /**
- * Constructor should be supplied with the model throwing
- * the exception and the name of the method that is not supported.
- */
- method_not_supported_exception(const char* method, void* model):
- exception((std::string("Unsupported method: ")+std::string(method)).c_str(),
- model)
- {
- }
- };
- } // end of namespace
- #endif
|