The checked-exceptions tag has no wiki summary.
0
votes
1answer
86 views
Exception model in Java, C++, Python [closed]
Hey I am wondering how does Java exceptions model differ that in C++ and Python?
I thought it was that only Java had checked exceptions, but from what I read Python also has checked exceptions?
Any ...
3
votes
2answers
91 views
Java - How to deal with checked exceptions *as a group*?
EDIT: This question relates to Java 1.6 (and below). Apologies for not making this clear in the original post.
The hierarchy here shows Java Exception is divided into two types: RuntimeException and ...
0
votes
0answers
22 views
Why Extending Exception is checked exception
This may seem like not a question but i would like to know when we want to create exception we extend Extend Class and it creates Checked exception. When i want to create unchecked, i will extend ...
4
votes
1answer
57 views
What is a good practice of dealing with some runtime HTTP exceptions?
I have a small method that looks like this:
public static void unstarTrack(Context ctxContext, String strId) {
try {
HttpParams htpParameters = new BasicHttpParams();
...
-3
votes
1answer
174 views
What is the difference between checked and unchecked exceptions in Java? [duplicate]
Possible Duplicate:
What are Checked and UnChecked Exceptions?
How can I identify if an Exception is (un)checked?
2
votes
2answers
500 views
Java 8: Mandatory checked exceptions handling in lambda expressions for standard Java 8 functional interfaces
I'm playing with the new lambda features in Java 8, and found that the practices offered by Java 8 are really useful. However, I'm wondering is there a good way to make a work-around for the following ...
6
votes
4answers
83 views
dealing with catastrophic exceptions
I read in a C# introductory book that you shouldn't catch an exception if you don't know what to do with it. Thinking of that bit of advice while programming in Java, I sometimes find I do not know ...
9
votes
4answers
188 views
Hard time understanting checked & unchecked exceptions
I've already read everything I could about this and I still don't understand how to use checked and unchecked exceptions. I think I can't still grasp the concept. I've read around StackOverflow that ...
8
votes
5answers
179 views
What parts of the JLS justify being able to throw checked exceptions as if they were unchecked?
I have recently discovered and blogged about the fact that it is possible to sneak a checked exception through the javac compiler and throw it where it mustn't be thrown. This compiles and runs in ...
8
votes
4answers
399 views
How to throw an Exception when your method signature doesn't allow to throw Exception?
I have a method like this:
public void getSomething(){
...
}
I want to throw an exception inside getSomething. The compiler will not allow me to do that because my method doesn't allow Exception to ...
2
votes
3answers
455 views
why 'throws Exception' necessary in calling a function - java
class throwseg1
{
void show() throws Exception
{
throw new Exception("my.own.Exception");
}
void show2() throws Exception // Why throws is necessary here ?
{
show();
}
void show3() throws ...
10
votes
1answer
882 views
Guava cache and preserving checked exceptions
I'm refactoring some code to use guava Cache.
Initial code:
public Post getPost(Integer key) throws SQLException, IOException {
return PostsDB.findPostByID(key);
}
In order not to break ...
2
votes
3answers
145 views
Java exceptions and inner exceptions, am I doing this correctly?
I'm validating a xml against a xsd, and I'm finding that there are many cases where exceptions have to be handled.
I believe these are called checked exceptions in java?
SchemaFactory sf = ....
...
2
votes
2answers
257 views
Can I set eclipse to show a warning if RuntimeException is not handled?
I have the following code:
public static void main(String[] args)
{
willItThrowException();
}
private static void willItThrowException() throws RuntimeException
{
throw new ...
6
votes
5answers
976 views
Checked vs. Unchecked Exceptions in Service Layer
I work on a project with a legacy service layer that returns null in many places if a requested record does not exist, or cannot be accessed due to the caller not being authorized. I am talking about ...
6
votes
2answers
167 views
How to find exceptions that were “ignored”?
No need to declare checked exceptions in throws clause or handling them in try/catch block in scala is the feature that I love. But it can be a problem when exception must be handled but was ignored. ...
0
votes
5answers
277 views
Throw checked exceptions
A few of my methods in Java throw exceptions such as NoSuchElementException, IllegalArgumentException, etc. But when using these methods, these exceptions appear to be unchecked. In other words, ...
63
votes
7answers
24k views
Java: checked vs unchecked exception explanation
I have read multiple posts on StackOverFlow about checked vs unchecked exceptions. I'm honestly still not quite sure how to use them properly.
Joshua Bloch in "Effective Java" said that
Use ...
0
votes
4answers
399 views
Why try/catch around throwable?
In trying to refactor some I code I attempted to throw the exception in the catch clause like so -
try {
....
}
catch(Exception exception){
.....
throw exception
}
However when I attempted to throw ...
4
votes
6answers
198 views
relax exception catch necessity
Is there a possibility in Java to get rid of the necessity to catch non-RuntimeException exceptions? Maybe compiler flags?
I know the reason why the catching is promoted, but want to do simple and ...
3
votes
3answers
2k views
Checked vs Unchecked exception
I've studied that: With an unchecked exception, however, the compiler doesn't force client programmers either to catch the exception or declare it in a throws clause. In fact, client programmers may ...
3
votes
1answer
468 views
How does scala generated byte code drops the checked exception?
If it possible to write byte code for a method that is supposed to throw a checked exception?
For instance the following Java class doesn't compile unless the method declares it throws the checked ...
7
votes
11answers
2k views
declare a method always throws an exception?
I have a method like...
int f() {
try {
int i = process();
return i;
} catch(Exception ex) {
ThrowSpecificFault(ex);
}
}
This produces a compiler error, "not all code paths return ...
3
votes
4answers
229 views
Are multiply-thrown Exceptions checked or runtime?
I have an Exception chain in which method1 throws an Exception to method2 which throws the Exception on to main. For some reason, the compiler forces me to deal with the error in method2 and marks it ...
6
votes
2answers
223 views
List all exceptions that could be thrown by a method
I know that Java enforce the programmer to list all exceptions that will be thrown by the method, and thus creating an easy way of listing all possible thrown exception for the user of code.
.NET on ...
7
votes
4answers
144 views
How would I know if I haven't handled some unchecked exceptions that my .NET code could throw?
In .NET, method signatures don't tell me if I have missed handling some exceptions that could be thrown by my code.
Is there some tool that can warn me, if say I am using a HashTable remove but ...
4
votes
3answers
819 views
Why are Runtime Exceptions “unchecked” in Java?
Why does it make sense to have Runtime Exceptions UnChecked (as opposed to if they were Checked)?
3
votes
3answers
867 views
Checked or Unchecked Exception [duplicate]
Possible Duplicate:
When to choose checked and unchecked exceptions
Hello!
So, I'm still getting comfortable regarding when to throw a checked or unchecked exception. I would like to know ...
6
votes
3answers
2k views
Isn't an unchecked exception that is caught in a try block a checked exception in Java?
I was told that in Java, unchecked exceptions can be caught in a try block, but if it's caught, isn't it called a checked exception?
9
votes
4answers
3k views
Wrapping a checked exception into an unchecked exception in Java?
I have this factory method in java:
public static Properties getConfigFactory() throws ClassNotFoundException, IOException {
if (config == null) {
InputStream in = ...
51
votes
11answers
13k views
When to choose checked and unchecked exceptions
In Java (or any other language with checked exceptions), when creating your own exception class, how do you decide whether it should be checked or unchecked?
My instinct is to say that a checked ...
