Quick Java question: Which Exception should I use? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T10:31:23Z http://stackoverflow.com/feeds/question/397581 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use 1 Quick Java question: Which Exception should I use? Daddy Warbox 2008-12-29T11:52:59Z 2008-12-29T15:51:14Z <p>Let's assume I'm a complete lazy bum and I don't want to invest the several dozen keystrokes needed for my own Exception class (it's not utterly important which gets used, really). However, to pretend I'm following good practices here, I want a pre-existing one that best fits my situation.</p> <p><strong>Problem:</strong> I need to throw an exception when my class's constructor receives an object in its parameters that is not found within a given list I've built elsewhere.</p> <p>Which exception class would be appropriate to throw for that?</p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397586#397586 15 Answer by Chris Jester-Young for Quick Java question: Which Exception should I use? Chris Jester-Young 2008-12-29T11:55:32Z 2008-12-29T11:55:32Z <p><code>IllegalArgumentException</code></p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397591#397591 0 Answer by Oscar Reyes for Quick Java question: Which Exception should I use? Oscar Reyes 2008-12-29T11:58:05Z 2008-12-29T11:58:05Z <p>IllegalArgumen...ooh well :) </p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397599#397599 9 Answer by Andreas Petersson for Quick Java question: Which Exception should I use? Andreas Petersson 2008-12-29T12:03:16Z 2008-12-29T12:03:16Z <p>Winner by Accuracy: <a href="http://java.sun.com/javase/6/docs/api/java/lang/IllegalArgumentException.html" rel="nofollow">java.lang.IllegalArgumentException</a></p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397602#397602 0 Answer by chosen1 for Quick Java question: Which Exception should I use? chosen1 2008-12-29T12:04:43Z 2008-12-29T12:04:43Z <p>Just incase you didnt get it..IllegalArgumentException :)</p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397608#397608 2 Answer by Ubersoldat for Quick Java question: Which Exception should I use? Ubersoldat 2008-12-29T12:08:03Z 2008-12-29T12:08:03Z <p>Actually, I don't believe you should (being lazy or not) build your own exception for this sort of common exceptions. So there, being lazy is good... sometimes.</p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397823#397823 8 Answer by Phil for Quick Java question: Which Exception should I use? Phil 2008-12-29T14:33:33Z 2008-12-29T14:47:24Z <p>IllegalArgumentException is indeed the answer here, but I'd say you have a problem with your design. In essence, your class invariant is dependent on the state of some external object, which is a violation of encapsulation. There's no way to determine whether a call to your constructor will succeed without knowledge of some <em>other</em> object, which leads to a confusing and easily misused API. </p> <p>This problem is mitigated somewhat if the list you refer to is a <code>static final</code> unmodifiable List (see <code>java.util.Collections.unmodifiableList()</code>) and contained within the class in question, but I still don't like it terribly much. Better is to encapsulate, if possible, the acceptable parameter values in an <code>enum</code>, which will eliminate the need for an exception altogether. I generally dislike exceptions thrown from constructors. If you must throw an exception, use a factory method instead. </p> <p>If an option is not available to you that eliminates the need for an external list, you may need to rethink your design.</p> http://stackoverflow.com/questions/397581/quick-java-question-which-exception-should-i-use/397967#397967 0 Answer by alepuzio for Quick Java question: Which Exception should I use? alepuzio 2008-12-29T15:51:14Z 2008-12-29T15:51:14Z <p>If you don't feel fear about the explosion of classes you can extend the IllegalArgumentException for this situation.</p> <pre><code> public class InvalidInstance extends IllegalArgumentException{ private String[] parameter; public InvalidInstance (String[] param){ this.parameter=param; } public String getMessage() String msg="YOUR_MESSAGE"; /*I think a string as "The currente object is invalid for parameter "+cycle for over parameter;*/ msg+=super.geTMessage(); return msg; } public Constructor(parameter1,...){ String[] param=new String[number_parameters] if... throws new InvalidInstance(param); } </code></pre> <p>In this way you can log all the parameters what run the exception.</p> <p>This code is'nt very beautiful to read: you can use if you prefer the very structured code. A simple IllegalArgumentException is more common :)</p>