1 20 package org.enhydra.barracuda.core.comp; 21 22 import java.io.*; 23 import java.util.*; 24 25 import org.enhydra.barracuda.plankton.exceptions.NestableException; 26 27 31 public class RenderException extends NestableException { 32 33 36 public RenderException () {super();} 37 38 43 public RenderException (String s) {super(s, null);} 44 45 51 public RenderException (String s, Exception ibaseException) {super(s, ibaseException);} 52 } 53 | Popular Tags |