File tree Expand file tree Collapse file tree
modules/core/src/main/java/org/apache/ignite/internal Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -649,7 +649,7 @@ private <T extends Message> void register(Class<T> cls) {
649649 : (MessageSerializer <T >)serCls .getConstructor ().newInstance ();
650650 }
651651 catch (Exception e ) {
652- throw new IgniteException ("Failted to register message of type " + cls .getSimpleName (), e );
652+ throw new IgniteException ("Failed to register message of type " + cls .getSimpleName (), e );
653653 }
654654
655655 factory .register (
@@ -659,7 +659,7 @@ private <T extends Message> void register(Class<T> cls) {
659659 return ctor .newInstance ();
660660 }
661661 catch (Exception e ) {
662- throw new IgniteException ("Failted to create message of type " + cls .getSimpleName (), e );
662+ throw new IgniteException ("Failed to create message of type " + cls .getSimpleName (), e );
663663 }
664664 },
665665 serializer
You can’t perform that action at this time.
0 commit comments