Skip to content

Commit

Permalink
Fix typo in exception
Browse files Browse the repository at this point in the history
  • Loading branch information
ljacomet committed Oct 13, 2022
1 parent 69fa659 commit 834fbce
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -98,12 +98,12 @@ private final static class UnsupportedCapabilitiesHandler implements ModuleDepen

@Override
public void requireCapability(Object capabilityNotation) {
throw new InvalidUserDataException("Capabilies are not supported by dependency constraints");
throw new InvalidUserDataException("Capabilities are not supported by dependency constraints");
}

@Override
public void requireCapabilities(Object... capabilityNotations) {
throw new InvalidUserDataException("Capabilies are not supported by dependency constraints");
throw new InvalidUserDataException("Capabilities are not supported by dependency constraints");
}
}
}

0 comments on commit 834fbce

Please sign in to comment.