1 package org.apache.fulcrum; 2 3 56 57 import org.apache.commons.lang.exception.NestableException; 58 59 65 public class ServiceException extends NestableException 66 { 67 public ServiceException() 68 { 69 } 70 71 public ServiceException(String msg) 72 { 73 super(msg); 74 } 75 76 public ServiceException(Throwable nested) 77 { 78 super(nested); 79 } 80 81 public ServiceException(String msg, Throwable nested) 82 { 83 super(msg, nested); 84 } 85 } 86 | Popular Tags |