01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.oscache.base;
06:
07: /**
08: * Thrown by {@link LifecycleAware} listeners that are not able to finalize
09: * themselves.
10: *
11: * @version $Revision: 254 $
12: * @author <a href="mailto:chris@swebtec.com">Chris Miller</a>
13: */
14: public class FinalizationException extends Exception {
15: public FinalizationException() {
16: super ();
17: }
18:
19: public FinalizationException(String message) {
20: super(message);
21: }
22: }
|