1 24 package org.objectweb.jalisto.se.impl.trace; 25 26 import java.io.PrintWriter ; 27 28 public class TraceErr extends TracePrintWriter { 29 protected String getTraceType() { 30 return "TraceErr"; 31 } 32 33 public TraceErr(TraceContext context) { 34 super(context, new PrintWriter (System.err)); 35 } 36 37 static final long serialVersionUID = -7589377888864761459L; 38 } 39 | Popular Tags |