1 23 package com.sun.enterprise.admin.wsmgmt.repository.spi; 24 25 import com.sun.enterprise.admin.wsmgmt.WSMgmtException; 26 27 33 public class RepositoryException extends WSMgmtException { 34 35 42 public RepositoryException(String msg, Throwable cause) { 43 super(msg, cause); 44 } 45 46 51 public RepositoryException(Throwable cause) { 52 super(cause); 53 } 54 55 60 public RepositoryException(String msg) { 61 super(msg); 62 } 63 64 67 public RepositoryException() { 68 super(); 69 } 70 } 71 | Popular Tags |