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 aTCKValidationException
with the given message.TCKValidationException
(String message, Throwable c) Constructs aTCKValidationException
with 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 aTCKValidationException
with the given message.- Parameters:
message
- the detail message, ornull
if none.
-
TCKValidationException
Constructs aTCKValidationException
with the given message and cause.- Parameters:
message
- the detail message, ornull
if none.c
- the cause of this exception, ornull
if none.
-