1 package br.com.ibnetwork.guara.pipeline;
2
3 import org.apache.commons.lang.exception.NestableRuntimeException;
4
5 /***
6 * @author <a href="mailto:leandro@ibnetwork.com.br">leandro</a>
7 */
8 public class PipelineException
9 extends NestableRuntimeException
10 {
11 public PipelineException(String message, Throwable t)
12 {
13 super(message,t);
14 }
15 }