1 /* 2 * Copyright 2014 The Kuali Foundation Licensed under the 3 * Educational Community License, Version 2.0 (the "License"); you may 4 * not use this file except in compliance with the License. You may 5 * obtain a copy of the License at 6 * 7 * http://www.osedu.org/licenses/ECL-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, 10 * software distributed under the License is distributed on an "AS IS" 11 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express 12 * or implied. See the License for the specific language governing 13 * permissions and limitations under the License. 14 */ 15 package org.kuali.student.common.exceptions; 16 17 /** 18 * @author Kuali Student Team 19 * 20 */ 21 public class InvalidKeyLineException extends Exception { 22 23 /** 24 * 25 */ 26 private static final long serialVersionUID = 1L; 27 28 /** 29 * 30 */ 31 public InvalidKeyLineException() { 32 // TODO Auto-generated constructor stub 33 } 34 35 /** 36 * @param arg0 37 */ 38 public InvalidKeyLineException(String arg0) { 39 super(arg0); 40 // TODO Auto-generated constructor stub 41 } 42 43 /** 44 * @param arg0 45 */ 46 public InvalidKeyLineException(Throwable arg0) { 47 super(arg0); 48 // TODO Auto-generated constructor stub 49 } 50 51 /** 52 * @param arg0 53 * @param arg1 54 */ 55 public InvalidKeyLineException(String arg0, Throwable arg1) { 56 super(arg0, arg1); 57 // TODO Auto-generated constructor stub 58 } 59 60 61 }