The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
18 views

Java unchecked or unsafe operations message

I am getting the following error when compiling a Java class in BlueJ. AuctionManager.java uses unchecked or unsafe operations. This error is only displayed when the following deserialization code ...
-3
votes
1answer
163 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?
0
votes
3answers
35 views

Override a method from an unchecked Exception class in Java

I am trying to override the getMessage() method in the NumberFormatException class in Java, which is an unchecked Exception. For some reason, I am unable to override it. I know it must be something ...
0
votes
1answer
34 views

unchecked or unsafe operations even after specifying type

I get the following warning Note: com.......\BeerSelect.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. I have specified the type as well.. I would like ...
0
votes
0answers
50 views

Is it a bad practice to throw unchecked exceptions in Java? [duplicate]

In Java, unchecked exceptions can be thrown in a code, is it a bad practice since we can declare check exceptions?
0
votes
1answer
71 views

How to avoid handling RunTimeException in Jersey

The most popular desicion for handling exceptions in rest service and return the error message to client - as i understand - is to catch WebApplicationException or MappableContainerException. But they ...
0
votes
0answers
21 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(); ...
2
votes
6answers
95 views

Should unchecked exceptions be caught and dealt with?

I have been reading many posts about exceptions lately and I have a question whether unchecked exceptions should be caught. I have read that if you want your application to recover from an error you ...
9
votes
4answers
185 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 ...
4
votes
3answers
90 views

Unchecked exception when using static imports, how come?

I'm experiencing some strange behavior when using static imports of inherited static methods: com/example/util/BaseUtil.java: package com.example.util; /*default*/ class BaseUtil { public ...