Class MathUnsupportedOperationException

  • All Implemented Interfaces:
    java.io.Serializable, MathThrowable

    public class MathUnsupportedOperationException
    extends java.lang.UnsupportedOperationException
    implements MathThrowable
    Base class for all unsupported features. It is used for all the exceptions that share the semantics of the standard UnsupportedOperationException, but must also provide a localized message.
    Since:
    2.2
    See Also:
    Serialized Form
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object[] getArguments()
      Gets the arguments used to build the message of this throwable.
      Localizable getGeneralPattern()
      Gets the localizable pattern used to build the general part of the message of this throwable.
      java.lang.String getLocalizedMessage()
      Gets the message in the system default locale.
      java.lang.String getMessage()
      Gets the message in a conventional US locale.
      java.lang.String getMessage​(java.util.Locale locale)
      Get the message in a specified locale.
      Localizable getSpecificPattern()
      Gets the localizable pattern used to build the specific part of the message of this throwable.
      • Methods inherited from class java.lang.Throwable

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

        equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • MathUnsupportedOperationException

        public MathUnsupportedOperationException​(java.lang.Object... args)
        Parameters:
        args - Arguments.
      • MathUnsupportedOperationException

        public MathUnsupportedOperationException​(Localizable specific,
                                                 java.lang.Object... args)
        Parameters:
        specific - Message pattern providing the specific context of the error.
        args - Arguments.
    • Method Detail

      • getSpecificPattern

        public Localizable getSpecificPattern()
        Gets the localizable pattern used to build the specific part of the message of this throwable.
        Specified by:
        getSpecificPattern in interface MathThrowable
        Returns:
        localizable pattern used to build the specific part of the message of this throwable
      • getGeneralPattern

        public Localizable getGeneralPattern()
        Gets the localizable pattern used to build the general part of the message of this throwable.
        Specified by:
        getGeneralPattern in interface MathThrowable
        Returns:
        localizable pattern used to build the general part of the message of this throwable
      • getArguments

        public java.lang.Object[] getArguments()
        Gets the arguments used to build the message of this throwable.
        Specified by:
        getArguments in interface MathThrowable
        Returns:
        the arguments used to build the message of this throwable
      • getMessage

        public java.lang.String getMessage​(java.util.Locale locale)
        Get the message in a specified locale.
        Specified by:
        getMessage in interface MathThrowable
        Parameters:
        locale - Locale in which the message should be translated.
        Returns:
        the localized message.
      • getMessage

        public java.lang.String getMessage()
        Gets the message in a conventional US locale.
        Specified by:
        getMessage in interface MathThrowable
        Overrides:
        getMessage in class java.lang.Throwable
        Returns:
        localized message
      • getLocalizedMessage

        public java.lang.String getLocalizedMessage()
        Gets the message in the system default locale.
        Specified by:
        getLocalizedMessage in interface MathThrowable
        Overrides:
        getLocalizedMessage in class java.lang.Throwable
        Returns:
        localized message