java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
javax.measure.MeasurementException
tech.units.tck.TCKValidationException
- All Implemented Interfaces:
Serializable
This exception indicates that an error has occurred while performing a TCK validate operation.
- Since:
- 1.0
- Version:
- 2.0, July 7, 2023
- Author:
- Werner Keil
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionTCKValidationException(String message) Constructs aTCKValidationExceptionwith the given message.TCKValidationException(String message, Throwable c) Constructs aTCKValidationExceptionwith the given message and cause. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TCKValidationException
Constructs aTCKValidationExceptionwith the given message.- Parameters:
message- the detail message, ornullif none.
-
TCKValidationException
Constructs aTCKValidationExceptionwith the given message and cause.- Parameters:
message- the detail message, ornullif none.c- the cause of this exception, ornullif none.
-