summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/UtilException.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceUtil/UtilException.cpp')
-rw-r--r--cpp/src/IceUtil/UtilException.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/cpp/src/IceUtil/UtilException.cpp b/cpp/src/IceUtil/UtilException.cpp
index 3a51e5824d7..3c85b32ed53 100644
--- a/cpp/src/IceUtil/UtilException.cpp
+++ b/cpp/src/IceUtil/UtilException.cpp
@@ -297,7 +297,6 @@ handlePcInfoError(void* data, const char* msg, int errnum)
frameInfo.setByErrorCb = true;
}
-
int
addFrame(void* sf, uintptr_t pc)
{
@@ -353,7 +352,6 @@ getStackFrames()
return stackFrames;
}
-
string
getStackTrace(const vector<void*>& stackFrames)
{
@@ -626,7 +624,6 @@ IceUtil::NullHandleException::ice_clone() const
}
#endif
-
IceUtil::IllegalArgumentException::IllegalArgumentException(const char* file, int line) :
ExceptionHelper<IllegalArgumentException>(file, line)
{
@@ -720,8 +717,6 @@ IceUtil::IllegalConversionException::reason() const
return _reason;
}
-
-
IceUtil::SyscallException::SyscallException(const char* file, int line, int err ):
ExceptionHelper<SyscallException>(file, line),
_error(err)
@@ -764,7 +759,6 @@ IceUtil::SyscallException::error() const
return _error;
}
-
IceUtil::FileLockException::FileLockException(const char* file, int line, int err, const string& path):
ExceptionHelper<FileLockException>(file, line),
_error(err),