|
|||||||||||||||||||
Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
IncorrectCacheListenerException.java | - | 100% | 100% | 100% |
|
1 | package org.jboss.cache.notifications; | |
2 | ||
3 | import org.jboss.cache.CacheException; | |
4 | ||
5 | /** | |
6 | * Thrown when an incorrectly annotated class is added as a cache listener using the {@link org.jboss.cache.Cache#addCacheListener(Object)} API. | |
7 | * | |
8 | * @author <a href="mailto:manik@jboss.org">Manik Surtani</a> | |
9 | * @since 2.0.0 | |
10 | */ | |
11 | public class IncorrectCacheListenerException extends CacheException | |
12 | { | |
13 | 14 | public IncorrectCacheListenerException(String s) |
14 | { | |
15 | 14 | super(s); |
16 | } | |
17 | } |
|