1 2 package org.enhydra.shark.api.internal.interoperability; 3 4 import org.enhydra.shark.api.RootException; 5 6 15 public class InteroperabilityException extends RootException { 16 17 public InteroperabilityException() { 18 super(); 19 } 20 public InteroperabilityException(String message) { 21 super(message); 22 } 23 public InteroperabilityException(String message, Throwable thr) { 24 super(message, thr); 25 } 26 public InteroperabilityException(Throwable thr) { 27 super(thr); 28 } 29 } 30 | Popular Tags |