1 25 package org.objectweb.jonas_ws.wsgen; 26 27 28 33 public class NoJ2EEWebservicesException extends WsGenException { 34 35 38 public NoJ2EEWebservicesException() { 39 super(); 40 } 41 42 46 public NoJ2EEWebservicesException(String msg) { 47 super(msg); 48 } 49 50 54 public NoJ2EEWebservicesException(Exception inner) { 55 super(inner); 56 } 57 58 63 public NoJ2EEWebservicesException(String msg, Exception inner) { 64 super(msg, inner); 65 } 66 67 } 68 | Popular Tags |