Class GraphIOException

  • All Implemented Interfaces:
    java.io.Serializable

    public class GraphIOException
    extends java.lang.Exception
    Exception thrown when IO errors occur when reading/writing graphs.
    Author:
    Nathan Mittler - nathan.mittler@gmail.com
    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.
    • Method Summary

      • Methods inherited from class java.lang.Throwable

        addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • 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 event
        cause - 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