Package com.zeroc.Ice
Class SyscallException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.zeroc.Ice.Exception
com.zeroc.Ice.LocalException
com.zeroc.Ice.SyscallException
- All Implemented Interfaces:
Serializable
,Cloneable
- Direct Known Subclasses:
FileException
,SocketException
This exception is raised if a system error occurred in the server
or client process. There are many possible causes for such a system
exception. For details on the cause,
error
should be inspected.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionSyscallException
(int error) SyscallException
(int error, Throwable cause) SyscallException
(Throwable cause) -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace
-
Field Details
-
error
public int errorThe error number describing the system exception. For C++ and Unix, this is equivalent toerrno
. For C++ and Windows, this is the value returned byGetLastError()
orWSAGetLastError()
.
-
-
Constructor Details
-
SyscallException
public SyscallException() -
SyscallException
-
SyscallException
public SyscallException(int error) -
SyscallException
-
-
Method Details