diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-11-13 16:53:57 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-11-13 16:53:57 -0330 |
commit | 99c3941638f735825b1bfa9f2df764255351242b (patch) | |
tree | fdde43c6580b785e5edc9ae90c26487d9e16be13 /cpp/src/FreezeScript/Exception.cpp | |
parent | adding registerIceBT (diff) | |
download | ice-99c3941638f735825b1bfa9f2df764255351242b.tar.bz2 ice-99c3941638f735825b1bfa9f2df764255351242b.tar.xz ice-99c3941638f735825b1bfa9f2df764255351242b.zip |
Moved Freeze to its own repository
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; -} |