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