Class NoninvertibleTransformException

    • Constructor Detail

      • NoninvertibleTransformException

        public NoninvertibleTransformException()
        Construct an exception with no detail message.
      • NoninvertibleTransformException

        public NoninvertibleTransformException​(String message)
        Construct an exception with the specified detail message.
        Parameters:
        message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
      • NoninvertibleTransformException

        public NoninvertibleTransformException​(Throwable cause)
        Constructs an exception with the specified cause.
        Parameters:
        cause - the cause, saved for later retrieval by the Throwable.getCause() method.
        Since:
        3.1
      • NoninvertibleTransformException

        public NoninvertibleTransformException​(String message,
                                               Throwable cause)
        Construct an exception with the specified detail message and cause. The cause is typically an other NoninvertibleTransformException emitted by Java2D.
        Parameters:
        message - the detail message, saved for later retrieval by the Throwable.getMessage() method.
        cause - the cause, saved for later retrieval by the Throwable.getCause() method.