1 26 27 28 package org.objectweb.jonathan.apis.binding; 29 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 35 public class ExportException extends JonathanException { 36 39 public ExportException() { super(); } 40 45 public ExportException(String s) { super(s); } 46 51 public ExportException(Exception exception) { super(exception); } 52 } 53 54 55 | Popular Tags |