1 16 package com.blandware.atleap.service.exception; 17 18 25 public class BeanNotFoundException extends Exception { 26 27 30 public BeanNotFoundException() { 31 } 32 33 34 39 public BeanNotFoundException(String msg) { 40 super(msg); 41 } 42 43 48 public BeanNotFoundException(Exception e) { 49 super(e); 50 } 51 52 55 public String toString() { 56 return getClass().getName() + (getMessage() != null ? ": " + getMessage() : ""); 57 } 58 59 } | Popular Tags |