Class TilesException

    • Constructor Summary

      Constructors 
      Constructor Description
      TilesException()
      Constructor.
      TilesException​(java.lang.String message)
      Constructor.
      TilesException​(java.lang.String message, java.lang.Throwable e)
      Create a new TilesException from an existing exception.
      TilesException​(java.lang.Throwable e)
      Create a new TilesException wrapping an existing exception.
    • 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

      • TilesException

        public TilesException()
        Constructor.
      • TilesException

        public TilesException​(java.lang.String message)
        Constructor.
        Parameters:
        message - The error or warning message.
      • TilesException

        public TilesException​(java.lang.Throwable e)
        Create a new TilesException wrapping an existing exception.

        The existing exception will be embedded in the new one, and its message will become the default message for the TilesException.

        Parameters:
        e - The cause to be wrapped.
      • TilesException

        public TilesException​(java.lang.String message,
                              java.lang.Throwable e)
        Create a new TilesException from an existing exception.

        The existing exception will be embedded in the new one, but the new exception will have its own message.

        Parameters:
        message - The detail message.
        e - The cause to be wrapped.