better shutdown handling

This commit is contained in:
kimchy 2010-07-01 10:28:57 +03:00
parent ad5525f575
commit e8b261c165
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ public final class ExceptionsHelper {
logger.warn("Exception cause unwrapping ran for 10 levels...", t);
return result;
}
result = t.getCause();
result = result.getCause();
}
return result;
}