01: /**
02: *
03: */package org.jicengine.operation;
04:
05: public class DuplicateNameException extends java.lang.RuntimeException {
06: public DuplicateNameException(String name, Object old,
07: Object newObject, Context context) {
08: super ("'" + name + "' already reserved to '" + old + "' ("
09: + old.getClass().getName() + "), can't add '"
10: + newObject + "' (" + newObject.getClass().getName()
11: + ") into context " + context);
12: }
13: }
|