View Javadoc
1   package xuml.tools.model.compiler.runtime;
2   
3   public class RelationshipNotEstablishedException extends RuntimeException {
4   
5       private static final long serialVersionUID = 3478494967228307335L;
6   
7       public RelationshipNotEstablishedException() {
8           super();
9       }
10  
11      public RelationshipNotEstablishedException(String message) {
12          super(message);
13      }
14  
15  }