Package it.unive.lisa.program
Class ProgramValidationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- it.unive.lisa.program.ProgramValidationException
-
- All Implemented Interfaces:
java.io.Serializable
public class ProgramValidationException extends java.lang.Exception
A genericException
that indicates that something has gone wrong while validating aProgram
's structure or when computing unit's hierarchies and cfgs' overridings.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ProgramValidationException()
Builds the exception.ProgramValidationException(java.lang.String message)
Builds the exception.ProgramValidationException(java.lang.String message, java.lang.Throwable cause)
Builds the exception.ProgramValidationException(java.lang.Throwable cause)
Builds the exception.
-
-
-
Constructor Detail
-
ProgramValidationException
public ProgramValidationException()
Builds the exception.
-
ProgramValidationException
public ProgramValidationException(java.lang.String message, java.lang.Throwable cause)
Builds the exception.- Parameters:
message
- the message of this exceptioncause
- the cause of this exception
-
ProgramValidationException
public ProgramValidationException(java.lang.String message)
Builds the exception.- Parameters:
message
- the message of this exception
-
ProgramValidationException
public ProgramValidationException(java.lang.Throwable cause)
Builds the exception.- Parameters:
cause
- the cause of this exception
-
-