|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| FileWatcherException.java | - | 0% | 0% | 0% |
|
||||||||||||||
| 1 | package org.jconfig; | |
| 2 | ||
| 3 | /** | |
| 4 | * This exception indicates that an exception occurs during the life-cycle of a FileWatcher. | |
| 5 | * @author Steve Braun <steve.braun@cogeco.ca> | |
| 6 | */ | |
| 7 | ||
| 8 | public class FileWatcherException extends Exception | |
| 9 | { | |
| 10 | 0 | public FileWatcherException( String msg ) |
| 11 | { | |
| 12 | 0 | super( msg ); |
| 13 | } | |
| 14 | } |
|
||||||||||