1 28 29 package org.objectweb.jonas_ws.wsgen; 30 31 import org.objectweb.jonas_lib.genbase.GenBaseException; 32 33 36 public class WsGenException extends GenBaseException { 37 38 41 public WsGenException() { 42 super(); 43 } 44 45 49 public WsGenException(String msg) { 50 super(msg); 51 } 52 53 57 public WsGenException(Exception inner) { 58 super(inner); 59 } 60 61 66 public WsGenException(String msg, Exception inner) { 67 super(msg, inner); 68 } 69 } | Popular Tags |