01: /*****************************************************************************
02: * Copyright (c) PicoContainer Organization. All rights reserved. *
03: * ------------------------------------------------------------------------- *
04: * The software in this package is published under the terms of the BSD *
05: * style license a copy of which has been included with this distribution in *
06: * the LICENSE.txt file. *
07: * *
08: * Idea by Rachel Davies, Original code by various *
09: *****************************************************************************/package org.nanocontainer.aop;
10:
11: import org.picocontainer.PicoException;
12:
13: /**
14: * Exception thrown by <code>PointcutsFactory</code> when it is passed an
15: * invalid regular expression.
16: *
17: * @author Stephen Molitor
18: * @version $Revision: 3144 $
19: */
20: public class MalformedRegularExpressionException extends PicoException {
21:
22: /**
23: * Creates a new <code>MalformedRegularExpression</code> object.
24: *
25: * @param message the error message.
26: * @param cause the original exception that caused this error.
27: */
28: public MalformedRegularExpressionException(final String message,
29: final Throwable cause) {
30: super(message, cause);
31: }
32:
33: }
|