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

Class ReaderException

src/jvm/clojure/lang/EdnReader.java:86–95  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

84}
85
86public static class ReaderException extends RuntimeException{
87 final int line;
88 final int column;
89
90 public ReaderException(int line, int column, Throwable cause){
91 super(cause);
92 this.line = line;
93 this.column = column;
94 }
95}
96
97static public int read1(Reader r){
98 try

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected