Class PomValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- nl.zerofiftyit.mdepunit.exception.PomValidationException
-
- All Implemented Interfaces:
Serializable
public class PomValidationException extends RuntimeException
Exception thrown when POM validation fails. This exception is used to indicate errors during the validation of Maven POM files, such as missing required elements or invalid configurations.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PomValidationException(String message)Constructs a new PomValidationException with the specified error message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PomValidationException
public PomValidationException(String message)
Constructs a new PomValidationException with the specified error message.- Parameters:
message- the error message detailing the validation failure
-
-