1234567891011121314151617181920212223242526272829 |
- package net.sf.l2j;
- import java.io.IOException;
- import java.util.logging.FileHandler;
- public class ErrorLogHandler extends FileHandler {
- public ErrorLogHandler() throws IOException, SecurityException {
- super();
- }
- }
|