Class ApfloatArithmeticException

All Implemented Interfaces:
Serializable, ApfloatLocalizedException

public class ApfloatArithmeticException extends ArithmeticException implements ApfloatLocalizedException
Exception indicating a mathematical condition. For example if the result would be infinite or undefined, this exception is thrown.
Since:
1.15.0
Version:
1.15.0
Author:
Mikko Tommila
See Also:
  • Constructor Details

    • ApfloatArithmeticException

      public ApfloatArithmeticException()
      Constructs a new apfloat arithmetic exception with an empty detail message.
    • ApfloatArithmeticException

      public ApfloatArithmeticException(String message)
      Constructs a new apfloat arithmetic exception with the specified detail message.
      Parameters:
      message - The detail message.
    • ApfloatArithmeticException

      public ApfloatArithmeticException(String message, String localizationKey, Object... localizationArgs)
      Constructs a new apfloat arithmetic exception with the specified detail message and localization data.
      Parameters:
      message - The detail message.
      localizationKey - The localization key.
      localizationArgs - The localization arguments.
  • Method Details