1 22 package org.jboss.resource.statistic.formatter; 23 24 30 public class StatisticsFormatterException extends RuntimeException  31 { 32 33 34 private static final long serialVersionUID = -6319738597224174432L; 35 36 public StatisticsFormatterException() 37 { 38 super(); 39 } 40 41 public StatisticsFormatterException(String message) 42 { 43 super(message); 44 } 45 46 public StatisticsFormatterException(Throwable t) 47 { 48 super(t); 49 } 50 51 public StatisticsFormatterException(String message, Throwable t) 52 { 53 super(message, t); 54 } 55 56 } 57 | Popular Tags |