1 package com.ontotext.ordi.wsmo4rdf.remote.exception;
2
3 public class NonExistingEntryException extends OrdiRemoteException {
4
5 private static final long serialVersionUID = 1L;
6
7 public NonExistingEntryException() {
8 super();
9 }
10
11 public NonExistingEntryException(String message) {
12 super(message);
13 }
14
15 public NonExistingEntryException(String message, Throwable cause) {
16 super(message, cause);
17 }
18
19 public NonExistingEntryException(Throwable cause) {
20 super(cause);
21 }
22 }