protected final AWGenericException getBindingException (String message, Exception exception)
{
AWGenericException wrappedException = null;
if (exception instanceof AWGenericException) {
wrappedException = (AWGenericException)exception;
wrappedException.addMessage(message);
}
else {
wrappedException = new AWBindingException(message, exception);
}
return wrappedException;