1 package zeus.actors.intrays;
2
3 public class NotUnderstoodException extends Exception {
4
5 private String reason = null;
6
7 public NotUnderstoodException (String reason) {
8 super();
9 this.reason = reason;
10 }
11
12
13 public String getReason () {
14 return reason;
15 }
16
17 }