1 /** 2 * This library is free software; you can redistribute it and/or modify it 3 * under the terms of the GNU Lesser General Public License (LGPL) as 4 * published by the Free Software Foundation; either version 3.0 of the 5 * License, or (at your option) any later version. 6 * 7 * This library is distributed in the hope that it will be useful, but 8 * WITHOUT ANY WARRANTY; without even the implied warranty of 9 * MERCHANTABILITY of FITNESS FOR A PARTICULAR PURPOSE. See the GNU 10 * Lesser General Public License for more details. 11 */ 12 13 /** 14 * Title: JBarcodeBean 15 * Description: Barcode JavaBeans Component 16 * Copyright: Copyright (C) 2004 17 * Company: Dafydd Walters 18 */ 19 package net.sourceforge.jbarcodebean; 20 21 /** 22 * Exception class for barcode encoding errors. 23 */ 24 public class BarcodeException extends Exception { 25 26 public BarcodeException() { 27 super(); 28 } 29 30 public BarcodeException(String text) { 31 super(text); 32 } 33 34 }