1 package ch.qos.logback.core.html; 2 3 import ch.qos.logback.core.html.IThrowableRenderer; 4 5 6 public class NOPThrowableRenderer implements IThrowableRenderer { 7 8 public void render(StringBuilder sbuf, Object event) { 9 return; 10 } 11 12 }