FreeWRL/FreeX3D  3.0.0
InvalidEventOutException.java
1 package vrml.external.exception;
2 
3 public class InvalidEventOutException extends RuntimeException
4 {
5  public InvalidEventOutException() {
6  super();
7  }
8 
9  public InvalidEventOutException(String s) {
10  super(s);
11  }
12 }
13