Class MathException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
cloud.opencode.base.core.exception.OpenException
cloud.opencode.base.math.exception.MathException
- All Implemented Interfaces:
Serializable
MathException - Base exception for the math module
数学模块基础异常
All exceptions thrown by the opencode-base-math module extend this class,
which in turn extends OpenException for unified exception handling.
opencode-base-math 模块抛出的所有异常均继承此类,
而此类继承自 OpenException 以实现统一异常处理。
- Since:
- JDK 25, opencode-base-math V1.0.3
- Author:
- Leon Soo www.LeonSoo.com
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionMathException(String message) Creates a math exception with a message.MathException(String message, Throwable cause) Creates a math exception with a message and cause. -
Method Summary
Methods inherited from class OpenException
getComponent, getErrorCode, getMessage, getRawMessageMethods inherited from class Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
MathException
Creates a math exception with a message. 创建数学异常- Parameters:
message- the error message / 错误消息
-
MathException
-