Cross Reference: MultipleSatisfiedPreconditionException.java
xref
: /
owl-s
/
src
/
org
/
mindswap
/
exceptions
/
MultipleSatisfiedPreconditionException.java
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
MultipleSatisfiedPreconditionException.java revision 2
2
ronwalf
/*
2
ronwalf
* Created on Jan 5, 2005
2
ronwalf
*/
2
ronwalf
package
org
.
mindswap
.
exceptions
;
2
ronwalf
2
ronwalf
import
org
.
mindswap
.
owls
.
process
.
Condition
;
2
ronwalf
import
org
.
mindswap
.
owls
.
process
.
Process
;
2
ronwalf
2
ronwalf
/**
2
ronwalf
*
@author
Evren Sirin
2
ronwalf
*
2
ronwalf
*/
2
ronwalf
public
class
MultipleSatisfiedPreconditionException
extends
PreconditionException
{
2
ronwalf
public
MultipleSatisfiedPreconditionException
(
Process
process
,
Condition
condition
) {
2
ronwalf
super
(
process
,
condition
);
2
ronwalf
}
2
ronwalf
2
ronwalf
public
String
getMessage
() {
2
ronwalf
return
"There are multiple different bindings possible for the precondition "
+
2
ronwalf
condition
+
" of process "
+
process
+
" is not true!"
;
2
ronwalf
}
2
ronwalf
}