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:
java.io.Serializable
public class GraphIOException extends java.lang.Exception
Exception thrown when IO errors occur when reading/writing graphs.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description GraphIOException()
Creates a new instance with no specified message or cause.GraphIOException(java.lang.String message)
Creates a new instance with the specified message and no specified cause.GraphIOException(java.lang.String message, java.lang.Throwable cause)
Creates a new instance with the specified message and cause.GraphIOException(java.lang.Throwable cause)
Creats a new instance with the specified cause and no specified message.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
GraphIOException
public GraphIOException()
Creates a new instance with no specified message or cause.
-
GraphIOException
public GraphIOException(java.lang.String message, java.lang.Throwable cause)
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
public GraphIOException(java.lang.String message)
Creates a new instance with the specified message and no specified cause.- Parameters:
message
- a description of the exception-triggering event
-
GraphIOException
public GraphIOException(java.lang.Throwable cause)
Creats a new instance with the specified cause and no specified message.- Parameters:
cause
- the exception which triggered this one
-
-