Fix typo: s/Conditoin/Condition/

This commit is contained in:
Florian Schmaus 2015-01-12 13:43:25 +01:00
parent b0cecee710
commit 47ced860ec
1 changed files with 1 additions and 1 deletions

View File

@ -269,7 +269,7 @@ public class XMPPError extends AbstractError {
try { try {
condition = Condition.valueOf(string); condition = Condition.valueOf(string);
} catch (Exception e) { } catch (Exception e) {
throw new IllegalStateException("Could not transform string '" + string + "' to XMPPErrorConditoin", e); throw new IllegalStateException("Could not transform string '" + string + "' to XMPPErrorCondition", e);
} }
return condition; return condition;
} }