-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Orchard error on thrown error: java.lang.ClassNotFoundException: com.sun.tools.javac.util.List #105
Comments
danielneal
changed the title
Error when resporting errors: java.lang.ClassNotFoundException: com.sun.tools.javac.util.List
Orchard error on thrown error: java.lang.ClassNotFoundException: com.sun.tools.javac.util.List
Feb 2, 2021
Downgrading to Cider 1.0.0 from melpa stable fixed the problem. |
Probably the issue is something to do with the fix for #103. |
I got a similar issue printed to my repl when my emacs tries to generate completions (I think). Here's the details Stacktrace
Clojure version1.10.1 java version
|
vemv
added a commit
to reducecombine/orchard
that referenced
this issue
Apr 11, 2021
Closes clojure-emacs#112 Related clojure-emacs#103 Related clojure-emacs#105
vemv
added a commit
to reducecombine/orchard
that referenced
this issue
Apr 11, 2021
Closes clojure-emacs#112 Related clojure-emacs#103 Related clojure-emacs#105
vemv
added a commit
to reducecombine/orchard
that referenced
this issue
Apr 11, 2021
Closes clojure-emacs#112 Related clojure-emacs#103 Related clojure-emacs#105
vemv
added a commit
to reducecombine/orchard
that referenced
this issue
Apr 13, 2021
Closes clojure-emacs#112 Related clojure-emacs#103 Related clojure-emacs#105
vemv
added a commit
to reducecombine/orchard
that referenced
this issue
Apr 13, 2021
Closes clojure-emacs#112 Related clojure-emacs#103 Related clojure-emacs#105
vemv
added a commit
to reducecombine/orchard
that referenced
this issue
Apr 13, 2021
Closes clojure-emacs#112 Related clojure-emacs#103 Related clojure-emacs#105
See #114 - you can disable the dynapath stuff if you run into this. |
vemv
added a commit
that referenced
this issue
Dec 13, 2021
vemv
added a commit
that referenced
this issue
Dec 13, 2021
bbatsov
pushed a commit
that referenced
this issue
Dec 14, 2021
Should be fixed in CIDER 1.2 (which was released today) / Orchard 0.8.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Expected behavior
(throw (ex-info "Help!" {})
should be handled by cider and show cider-errorActual behavior
Execution error (ExceptionInfo) at user/eval9510 (REPL:1265).
Helo!
ERROR: Unhandled REPL handler exception processing message {:nrepl.middleware.print/stream? 1, :nrepl.middleware.print/print cider.nrepl.pprint/pprint, :nrepl.middleware.print/quota 1048576, :nrepl.middleware.print/buffer-size 4096, :nrepl.middleware.print/options {:right-margin 70}, :op stacktrace, :session a739d2ab-eec5-42ae-8e35-01b1ea428624, :id 234}
java.lang.ClassNotFoundException: com.sun.tools.javac.util.List
at java.net.URLClassLoader.findClass(URLClassLoader.java:382)
at clojure.lang.DynamicClassLoader.findClass(DynamicClassLoader.java:69)
at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
at clojure.lang.DynamicClassLoader.loadClass(DynamicClassLoader.java:77)
at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:348)
at clojure.lang.RT.classForName(RT.java:2211)
at clojure.lang.RT.classForName(RT.java:2220)
at cider.nrepl.inlined_deps.orchard.v0v6v4.orchard.java.legacy_parser$parse_java.invokeStatic(legacy_parser.clj:88)
at cider.nrepl.inlined_deps.orchard.v0v6v4.orchard.java.legacy_parser$parse_java.invoke(legacy_parser.clj:66)
Steps to reproduce the problem
Environment & Version information
Clojure version
1.10.1
Java version
java -version
openjdk version "1.8.0_275"
OpenJDK Runtime Environment (AdoptOpenJDK)(build 1.8.0_275-b01)
Operating system
Mac OS X 10.15.7
Emacs version
GNU Emacs 27.1 (build 1, x86_64-apple-darwin19.6.0, Carbon Version 162 AppKit 1894.6) of 2021-02-02
Notes
The class it's looking for is in tools.jar, which is in
$JAVA_HOME/lib
.The text was updated successfully, but these errors were encountered: