// ********************************************************************** // // Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. // // This copy of Ice is licensed to you under the terms described in the // ICE_LICENSE file included in this distribution. // // ********************************************************************** #ifndef FREEZE_SCRIPT_EXCEPTION_H #define FREEZE_SCRIPT_EXCEPTION_H #include namespace FreezeScript { class FailureException : public IceUtil::Exception { public: FailureException(const char*, int, const std::string&); virtual const std::string& ice_name() const; virtual void ice_print(std::ostream&) const; virtual IceUtil::Exception* ice_clone() const; virtual void ice_throw() const; std::string reason() const; private: std::string _reason; static std::string _name; }; } // End of namespace FreezeScript #endif