Where/How could I get a list of all the java and javac's error and warning messages?

link|improve this question

2  
Write software, and make a list as you come across them :) – Dolph Feb 24 '10 at 14:57
Watch me coding - after 2-3 days you have the complete list ;-) (and a dictionary of german swear words for free) – Andreas_D Feb 24 '10 at 15:10
@Dolph : That would take while :) @Andreas_D: could always use a list of german swear words :P – Saif Feb 24 '10 at 15:25
2  
My all-purpose German swear word: "fliegenkindscheiße!" (flying baby poo!"). It's a good phrase to know in any language. – Dolph Feb 24 '10 at 15:39
@Dolph: now thats a keeper! – Saif Feb 24 '10 at 16:53
feedback

5 Answers

up vote 2 down vote accepted

This page is I think what you need.

link|improve this answer
What about warnings? – Saif Feb 24 '10 at 15:00
@Saif - I doubt that list contains all error messages. – Stephen C Feb 24 '10 at 15:02
@Saif : From a bit of googling I just did, this seems to be the only compilation of its sort. – missingfaktor Feb 24 '10 at 15:06
1  
@Saif : Going thru Java Language Spec may help you. – missingfaktor Feb 24 '10 at 15:30
1  
@Rahul G: Thanks! I just found the book on amazon, looks great :D – Saif Feb 24 '10 at 16:52
show 2 more comments
feedback

mindprod.com has a Java Glossary with runtime and compile time lists:

http://mindprod.com/jgloss/errormessages.html

Hope that helps

link|improve this answer
Duplicate answer. – missingfaktor Feb 24 '10 at 15:01
feedback

Do you mean Java Exception?

http://java.sun.com/j2se/1.4.2/docs/api/java/lang/Exception.html

This is a list of every exception that Java will at run-time. If you are refering to syntax errors you maybe look at learning Java

link|improve this answer
That certainly covers a part of it, but what about the warning messages? – Saif Feb 24 '10 at 14:55
feedback

You could look through the source code, since it's open source.

But more importantly - I can't think of a single reason why you'd want to do this. What's your real question here; what are you trying to achieve? It's almost certain you're going about it in a suboptimal fashion...

link|improve this answer
That would be the long way around. I am developing an Arabic translation to Java and would like to translate the errors and messages too. – Saif Feb 24 '10 at 14:57
feedback

This list of exceptions is much more interesting than any of the above answers.

It might not be as useful or as complete, but it's good reading nonetheless.

link|improve this answer
Sorry.......... – Kevin Vermeer Aug 18 '10 at 16:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.