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
-
-
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.
-
-
-
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.
-
GraphIOException
public GraphIOException(java.lang.String message)
Creates a new instance with the specified message and no specified cause.
-
GraphIOException
public GraphIOException(java.lang.Throwable cause)
Creats a new instance with the specified cause and no specified message.
-
-