1 /* 2 * Copyright (C) The Apache Software Foundation. All rights reserved. 3 * 4 * This software is published under the terms of the Apache Software License 5 * version 1.1, a copy of which has been included with this distribution in 6 * the LICENSE.txt file. 7 */ 8 package org.apache.avalon.excalibur.event; 9 10 import org.apache.avalon.framework.CascadingException; 11 12 /** 13 * A SourceException is thrown when an enqueue operation fails. 14 * 15 * @author <a HREF="mailto:bloritsch@apache.org">Berin Loritsch</a> 16 */ 17 public class SourceException extends CascadingException 18 { 19 public SourceException( String message ) 20 { 21 super( message ); 22 } 23 24 public SourceException( String message, Throwable e ) 25 { 26 super( message, e ); 27 } 28 } 29