1 /*** 2 * License Agreement. 3 * 4 * JSPA (POJO-SP) 5 * 6 * Copyright (C) 2009 HRX Pty Ltd 7 * 8 * This file is part of JSPA. 9 * 10 * JSPA is free software: you can redistribute it and/or modify it under the 11 * terms of the GNU Lesser General Public License version 3 as published by the 12 * Free Software Foundation. 13 * 14 * JSPA is distributed in the hope that it will be useful, but WITHOUT ANY 15 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR 16 * A PARTICULAR PURPOSE. See the Lesser General Public License for more details. 17 * 18 * You should have received a copy of the GNU Lesser General Public License 19 * along with JSPA. If not, see <http://www.gnu.org/licenses/>. 20 */ 21 package com.hrx.rasp.util.dao.exception; 22 23 /*** 24 * @author dan.stoica <dan.stoica@acslink.net.au> 25 * 26 */ 27 public class FieldNotFoundException extends StoredProcedureException 28 { 29 private static final long serialVersionUID = 1L; 30 31 /*** 32 * 33 */ 34 public FieldNotFoundException() 35 { 36 super(); 37 } 38 39 /*** 40 * @param proc 41 * @param code 42 * @param msg 43 */ 44 public FieldNotFoundException(String proc, int code, String msg) 45 { 46 super(proc, code, msg); 47 } 48 49 /*** 50 * @param message 51 * @param cause 52 */ 53 public FieldNotFoundException(String message, Throwable cause) 54 { 55 super(message, cause); 56 } 57 58 /*** 59 * @param message 60 */ 61 public FieldNotFoundException(String message) 62 { 63 super(message); 64 } 65 66 /*** 67 * @param cause 68 */ 69 public FieldNotFoundException(Throwable cause) 70 { 71 super(cause); 72 } 73 74 }