1 58 package org.krysalis.barcode; 59 60 import org.apache.avalon.framework.CascadingException; 61 62 67 public class BarcodeException extends CascadingException { 68 69 74 public BarcodeException(String message) { 75 super(message); 76 } 77 78 84 public BarcodeException(String message, Throwable throwable) { 85 super(message, throwable); 86 } 87 88 } 89 | Popular Tags |