Class GraphIOException

java.lang.Object
java.lang.Throwable
java.lang.Exception
edu.uci.ics.jung.io.GraphIOException
All Implemented Interfaces:
Serializable

public class GraphIOException extends Exception
Exception thrown when IO errors occur when reading/writing graphs.
See Also:
  • Field Details

  • Constructor Details

    • GraphIOException

      public GraphIOException()
      Creates a new instance with no specified message or cause.
    • GraphIOException

      public GraphIOException(String message, Throwable cause)
      Creates a new instance with the specified message and cause.
      Parameters:
      message - a description of the exception-triggering event
      cause - the exception which triggered this one
    • GraphIOException

      public GraphIOException(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(Throwable cause)
      Creats a new instance with the specified cause and no specified message.
      Parameters:
      cause - the exception which triggered this one