log.debug( "...successful" );
}
catch (MailFolderException e) {
log.error( e.getMessage(), e );
if ( e.hasErrorCode( IErrorCodes.EXCEPTION_FOLDER_ALREADY_EXIST ) ) {
throw new GWTMailFolderExistException( null, sourceFolder.getName() );
}
else {
throw new GWTMailFolderException( null, sourceFolder.getName() );
}
}