1 23 package com.sun.enterprise.admin.wsmgmt.transform; 24 25 import com.sun.enterprise.admin.wsmgmt.WSMgmtException; 26 27 30 public class TransformException extends WSMgmtException { 31 32 39 public TransformException(String msg, Throwable cause) { 40 super(msg, cause); 41 } 42 43 48 public TransformException(Throwable cause) { 49 super(cause); 50 } 51 52 57 public TransformException(String msg) { 58 super(msg); 59 } 60 61 64 public TransformException() { 65 super(); 66 } 67 } 68 | Popular Tags |