1 26 27 28 package org.objectweb.jonathan.apis.presentation; 29 30 import org.objectweb.jonathan.apis.kernel.JonathanException; 31 32 36 public class UnMarshalException extends JonathanException { 37 40 public UnMarshalException() { super(); } 41 46 public UnMarshalException(String s) { super(s); } 47 52 public UnMarshalException(Exception exception) { super(exception); } 53 } 54 55 56 | Popular Tags |