1 16 package com.blandware.atleap.persistence.exception; 17 18 26 public class UpdateException extends Exception { 27 28 31 public UpdateException() { 32 } 33 34 39 public UpdateException(String msg) { 40 super(msg); 41 } 42 43 48 public UpdateException(Exception e) { 49 super(e); 50 } 51 52 55 public String toString() { 56 return "com.blandware.atleap.persistence.exception.UpdateException"; 57 } 58 } 59 | Popular Tags |