Skip to content

Commit

Permalink
💬 Correct an adapter not found message
Browse files Browse the repository at this point in the history
  • Loading branch information
Romitou committed Jun 21, 2022
1 parent 9c461f1 commit a8f9e46
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public static void loadCodec(Class<? extends MongoSKCodec<?>> codec) {
Class.forName(codecInstance.getReturnType().getCanonicalName());
loadedCodecs.add(codecInstance);
} catch (NoClassDefFoundError | ClassNotFoundException e) {
LoggerHelper.severe("Oops, the return class of the " + codec.getName() + " codec doesn't exists! Try updating Skript?");
LoggerHelper.severe("Oops, the return class of the " + codec.getName() + " codec doesn't exists! Skipping registration.");
} catch (ReflectiveOperationException e) {
LoggerHelper.severe("Oops, cannot load the " + codec.getName() + " codec! Look at the console for more details.");
e.printStackTrace();
Expand Down

0 comments on commit a8f9e46

Please sign in to comment.