1 package org.apache.beehive.controls.spi.svc; 2 3 20 21 25 public class ServiceException extends Exception  26 { 27 32 public ServiceException(String message) 33 { 34 super(message); 35 } 36 37 45 public ServiceException(String message, Throwable t) 46 { 47 super(message + "[" + t.getMessage() + "]", t); 48 } 49 50 51 private static final long serialVersionUID = 8818197331269164527L; 52 } 53 | Popular Tags |