01: package org.jicengine.operation;
02:
03: /**
04: *
05: *
06: * <p>
07: * Copyright (C) 2004 Timo Laitinen
08: * </p>
09: * @author Timo Laitinen
10: * @created 2004-09-20
11: * @since JICE-0.10
12: *
13: */
14:
15: public class OperationException extends Exception {
16:
17: public OperationException(String message) {
18: super (message);
19: }
20:
21: public OperationException(String message, Throwable cause) {
22: super(message, cause);
23: }
24: }
|