MCPcopy Index your code
hub / github.com/clojure/clojure / ArityException

Method ArityException

src/jvm/clojure/lang/ArityException.java:24–26  ·  view source on GitHub ↗
(int actual, String name)

Source from the content-addressed store, hash-verified

22 final public String name;
23
24 public ArityException(int actual, String name) {
25 this(actual, name, null);
26 }
27
28 public ArityException(int actual, String name, Throwable cause) {
29 super("Wrong number of args (" + (actual <= 20 ? actual : "> 20") + ") passed to: " + Compiler.demunge(name), cause);

Callers

nothing calls this directly

Calls 1

demungeMethod · 0.95

Tested by

no test coverage detected