diff options
Diffstat (limited to 'cpp/src/FreezeScript/Exception.cpp')
-rw-r--r-- | cpp/src/FreezeScript/Exception.cpp | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/cpp/src/FreezeScript/Exception.cpp b/cpp/src/FreezeScript/Exception.cpp deleted file mode 100644 index 1d1f2efbbe9..00000000000 --- a/cpp/src/FreezeScript/Exception.cpp +++ /dev/null @@ -1,61 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2015 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. -// -// ********************************************************************** - -#include <FreezeScript/Exception.h> - -using namespace std; - -// -// FailureException -// -FreezeScript::FailureException::FailureException(const char* file, int line, const string& reason) : - IceUtil::Exception(file, line), _reason(reason) -{ -} - -FreezeScript::FailureException::~FailureException() throw() -{ -} - -const char* FreezeScript::FailureException::_name = "FreezeScript::FailureException"; - -string -FreezeScript::FailureException::ice_name() const -{ - return _name; -} - -void -FreezeScript::FailureException::ice_print(ostream& out) const -{ - ::IceUtil::Exception::ice_print(out); - out << ":\nerror occurred during transformation"; // TODO - if(!_reason.empty()) - { - out << ":\n" << _reason; - } -} - -FreezeScript::FailureException* -FreezeScript::FailureException::ice_clone() const -{ - return new FailureException(ice_file(), ice_line(), _reason); -} - -void -FreezeScript::FailureException::ice_throw() const -{ - throw *this; -} - -string -FreezeScript::FailureException::reason() const -{ - return _reason; -} |