Package edu.uci.ics.jung.io
Class GraphIOException
java.lang.Object
java.lang.Throwable
java.lang.Exception
edu.uci.ics.jung.io.GraphIOException
- All Implemented Interfaces:
Serializable
Exception thrown when IO errors occur when reading/writing graphs.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new instance with no specified message or cause.GraphIOException
(String message) Creates a new instance with the specified message and no specified cause.GraphIOException
(String message, Throwable cause) Creates a new instance with the specified message and cause.GraphIOException
(Throwable cause) Creats a new instance with the specified cause and no specified message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
GraphIOException
public GraphIOException()Creates a new instance with no specified message or cause. -
GraphIOException
Creates a new instance with the specified message and cause.- Parameters:
message
- a description of the exception-triggering eventcause
- the exception which triggered this one
-
GraphIOException
Creates a new instance with the specified message and no specified cause.- Parameters:
message
- a description of the exception-triggering event
-
GraphIOException
Creats a new instance with the specified cause and no specified message.- Parameters:
cause
- the exception which triggered this one
-