|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
FinalizationException.java | - | 0% | 0% | 0% |
|
1 | /* | |
2 | * Copyright (c) 2002-2003 by OpenSymphony | |
3 | * All rights reserved. | |
4 | */ | |
5 | package com.opensymphony.oscache.base; | |
6 | ||
7 | ||
8 | /** | |
9 | * Thrown by {@link LifecycleAware} listeners that are not able to finalize | |
10 | * themselves. | |
11 | * | |
12 | * @version $Revision: 1.1 $ | |
13 | * @author <a href="mailto:chris@swebtec.com">Chris Miller</a> | |
14 | */ | |
15 | public class FinalizationException extends Exception { | |
16 | 0 | public FinalizationException() { |
17 | 0 | super(); |
18 | } | |
19 | ||
20 | 0 | public FinalizationException(String message) { |
21 | 0 | super(message); |
22 | } | |
23 | } |
|