1 23 package com.sun.enterprise.admin.wsmgmt; 24 25 28 public class WSMgmtException extends Exception { 29 30 37 public WSMgmtException(String msg, Throwable cause) { 38 super(msg, cause); 39 } 40 41 46 public WSMgmtException(Throwable cause) { 47 super(cause); 48 } 49 50 55 public WSMgmtException(String msg) { 56 super(msg); 57 } 58 59 62 public WSMgmtException() { 63 super(); 64 } 65 } 66 | Popular Tags |