1 16 17 18 package org.apache.commons.logging.simple; 19 20 21 import java.io.Serializable ; 22 23 24 public class LogRecord implements Serializable { 25 26 27 public LogRecord(int type, Object message, Throwable t) { 28 this.type = type; 29 this.message = message; 30 this.t = t; 31 } 32 33 public int type; 34 public Object message; 35 public Throwable t; 36 37 } 38 | Popular Tags |