Add welcome message on creation ...

This commit is contained in:
Paulo Gustavo Veiga
2012-07-13 21:07:51 -03:00
parent 86fca31251
commit b05e25b43f
7 changed files with 108 additions and 21 deletions

View File

@@ -25,4 +25,10 @@ public class WiseMappingException
{
super(str);
}
public WiseMappingException(String str,Exception e)
{
super(str);
initCause(e);
}
}