Answer Posted / vikas deshmukh
both inherit from Throwable, some differences are,
Exceptions:
1)It can be checked or unchecked
2)It indicate an error caused by the programmer
3)It Should be handled at the application level
Errors:
1)Errors are always unchecked
2)Usually indicate a system error or a problem with a low-level resource
3)It should be handled at the system level, if possible
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Difference between notify() method and notifyall() method in java?
What is treemap in java?
How to perform quicksort in java?
Why does java not support operator overloading?
What is deserialization?
What is the default size of load factor in hashing based collection?
How do I convert a numeric ip address like 192.18.97.39 into a hostname like java.sun.com?
Can a class have more than one object?
What are the loops in java?
What is java argument list?
How do you sing an Applet ?
What data type is string java?
What is array size in java?
Can finally block be used without a catch?
What are the limitations of procedural programming approach?