AuditLogHandler.java 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. /* This program is free software; you can redistribute it and/or modify
  2. * it under the terms of the GNU General Public License as published by
  3. * the Free Software Foundation; either version 2, or (at your option)
  4. * any later version.
  5. *
  6. * This program is distributed in the hope that it will be useful,
  7. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  9. * GNU General Public License for more details.
  10. *
  11. * You should have received a copy of the GNU General Public License
  12. * along with this program; if not, write to the Free Software
  13. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  14. * 02111-1307, USA.
  15. *
  16. * http://www.gnu.org/copyleft/gpl.html
  17. */
  18. package net.sf.l2j;
  19. import java.io.IOException;
  20. import java.util.logging.FileHandler;
  21. /**
  22. * @author zabbix
  23. * Lets drink to code!
  24. */
  25. public class AuditLogHandler extends FileHandler
  26. {
  27. public AuditLogHandler() throws IOException, SecurityException
  28. {
  29. super();
  30. }
  31. }