View Javadoc
1 /* 2 * Copyright (c) 2003 3 * Information Desire GmbH 4 * All rights reserved. 5 */ 6 package com.infodesire.infobit; 7 8 /*** 9 * exception indicating referentialk integrity probem ( like on removals ) 10 * 11 * @author konstantin 12 * @created August 12, 2003 13 * @version $Revision: 1.1 $ 14 */ 15 public class InfobitIntegrityException extends Exception { 16 /*** 17 */ 18 public InfobitIntegrityException() { 19 super(); 20 } 21 22 23 /*** 24 * Constructor for the InfobitException object 25 * 26 * @param msg Description of Parameter 27 */ 28 public InfobitIntegrityException(String msg) { 29 super(msg); 30 } 31 32 33 /*** 34 * Constructor for the InfobitException object 35 * 36 * @param msg Description of Parameter 37 * @param cause Description of Parameter 38 */ 39 public InfobitIntegrityException(String msg, Throwable cause) { 40 super(msg, cause); 41 } 42 43 44 /*** 45 * Constructor for the InfobitException object 46 * 47 * @param cause Description of Parameter 48 */ 49 public InfobitIntegrityException(Throwable cause) { 50 super(cause); 51 } 52 }

This page was automatically generated by Maven