1 16 package com.blandware.atleap.persistence.exception; 17 18 25 public class DeleteException extends Exception { 26 27 30 public DeleteException() { 31 } 32 33 38 public DeleteException(String msg) { 39 super(msg); 40 } 41 42 47 public DeleteException(Exception e) { 48 super(e); 49 } 50 51 54 public String toString() { 55 return "com.blandware.atleap.persistence.exception.DeleteException"; 56 } 57 58 } | Popular Tags |