1 /* *************************************************************************************** 2 * Class: com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException.java 3 * Date: 2015/02/11 4 * *************************************************************************************** 5 * 6 * Copyright 2015 - CardaTechnologies, LLC 7 * 8 * Licensed under the Apache License, Version 2.0 (the "License"); 9 * you may not use this file except in compliance with the License. 10 * You may obtain a copy of the License at 11 * 12 * http://www.apache.org/licenses/LICENSE-2.0 13 * 14 * Unless required by applicable law or agreed to in writing, software 15 * distributed under the License is distributed on an "AS IS" BASIS, 16 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 17 * See the License for the specific language governing permissions and 18 * limitations under the License. 19 * 20 * *************************************************************************************** 21 */ 22 23 package com.cardatechnologies.utils.validators.abaroutevalidator.exceptions; 24 25 /** 26 * <dl> 27 * <dt><font face="Arial"><span class="simpleTagLabel">All Rights Reserved</span></font></dt> 28 * <dd>Copyright © 2015 - CardaTechnologies, LLC</dd> 29 * <dt><font face="Arial"><span class="simpleTagLabel">Class Description:</span></font></dt> 30 * <dd>This class is used to validate a ABA Routing Transmit Number.</dd> 31 * </dl> 32 * 33 * @version {version} 34 * @author Enter your name here... 35 */ 36 public class AbaRouteValidationException 37 extends Exception { 38 39 /** 40 * Constructs ... 41 * 42 * 43 * @param message 44 */ 45 public AbaRouteValidationException( String message ) { 46 super( message ); 47 } 48 49 /** 50 * Constructs ... 51 * 52 * 53 * @param cause 54 */ 55 public AbaRouteValidationException( Throwable cause ) { 56 super( cause ); 57 } 58 59 /** 60 * Constructs ... 61 * 62 * 63 * @param message 64 * @param cause 65 */ 66 public AbaRouteValidationException( String message, 67 Throwable cause ) { 68 super( message, 69 cause ); 70 } 71 72 /** 73 * Constructs ... 74 * 75 * 76 * @param message 77 * @param cause 78 * @param enableSuppression 79 * @param writableStackTrace 80 */ 81 protected AbaRouteValidationException( String message, 82 Throwable cause, 83 boolean enableSuppression, 84 boolean writableStackTrace ) { 85 super( message, 86 cause, 87 enableSuppression, 88 writableStackTrace ); 89 } 90 } 91 92 /* *************************************************************************************** 93 * Copyright 2015 - CardaTechnologies, LLC 94 * 95 * Class: com.cardatechnologies.utils.validators.abaroutevalidator.exceptions.AbaRouteValidationException.java 96 * Date: 2015/02/11 97 *************************************************************************************** */