1 package jp.sf.grizzly.pipeline; 2 3 import jp.sf.grizzly.GrizzlyException; 4 5 public class PipelineException extends GrizzlyException 6 { 7 public PipelineException() 8 { 9 super(); 10 } 11 12 public PipelineException( String message ) 13 { 14 super( message ); 15 } 16 17 public PipelineException(Throwable nested) 18 { 19 super(nested); 20 } 21 22 public PipelineException(String msg, Throwable nested) 23 { 24 super(msg, nested); 25 } 26 27 }