View Javadoc

1   package br.com.ibnetwork.guara;
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 GuaraException
9   	extends NestableRuntimeException
10  {
11  
12      public GuaraException(String message)
13      {
14          super(message);
15      }
16  
17      public GuaraException(String message, Throwable t)
18      {
19          super(message,t);
20      }
21  
22  }