MultipleSatisfiedPreconditionException.java revision 2
2ronwalf/*
2ronwalf * Created on Jan 5, 2005
2ronwalf */
2ronwalfpackage org.mindswap.exceptions;
2ronwalf
2ronwalfimport org.mindswap.owls.process.Condition;
2ronwalfimport org.mindswap.owls.process.Process;
2ronwalf
2ronwalf/**
2ronwalf * @author Evren Sirin
2ronwalf *
2ronwalf */
2ronwalfpublic class MultipleSatisfiedPreconditionException extends PreconditionException {
2ronwalf public MultipleSatisfiedPreconditionException(Process process, Condition condition) {
2ronwalf super( process, condition );
2ronwalf }
2ronwalf
2ronwalf public String getMessage() {
2ronwalf return "There are multiple different bindings possible for the precondition " +
2ronwalf condition + " of process " + process + " is not true!";
2ronwalf }
2ronwalf}