Class InheritanceConflictException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- de.aristaflow.adept2.model.activitymodel.InheritanceConflictException
-
- All Implemented Interfaces:
Serializable
public class InheritanceConflictException extends Exception
AnInheritanceConflictException
indicates that a development version of an activity model entity to be released conflicts with other entities in the activity model. For instance, when setting an overridden configuration value to fixed or declaring configuration entries which already exist but are incompatible with each other or by attributes that may only be overridden in dedicated ways.- Author:
- Ulrich Kreher
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InheritanceConflictException()
Creates a newConflictingActivityModelException
to indicate that a release of a development version of a specific entity conflicts with at least one other entity.InheritanceConflictException(String msg)
Creates a newConflictingActivityModelException
with the designated message to indicate that a release of a development version of a specific entity conflicts with at least one other entity.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
InheritanceConflictException
public InheritanceConflictException()
Creates a newConflictingActivityModelException
to indicate that a release of a development version of a specific entity conflicts with at least one other entity.
-
InheritanceConflictException
public InheritanceConflictException(String msg)
Creates a newConflictingActivityModelException
with the designated message to indicate that a release of a development version of a specific entity conflicts with at least one other entity.- Parameters:
msg
- A message for the createdInheritanceConflictException
.
-
-