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