1 package br.com.ibnetwork.guara.parameters;
2
3 import br.com.ibnetwork.guara.GuaraException;
4
5 /***
6 * @author <a href="mailto:leandro@ibnetwork.com.br">leandro</a>
7 */
8 public class ParameterParserException
9 extends GuaraException
10 {
11
12 public ParameterParserException(String message, Throwable t)
13 {
14 super(message, t);
15 }
16
17 }