Java   View all facts   Glossary   Help
object > exception > unchecked exception
Next exceptionbuilt-in exception    Upexception    Previous exceptionprogrammer-created exception class   

unchecked exception comparison table
Subject refer to create you communicate with have model be access is a kind of is a subtopic of send convert hide notify has part have example of creation has definition receive share convert into inherit return represent wait on throw when create by refer to by see also
errorwithout reference to the instance variables contained in ituse the new operatorother objects by sending and receiving messagesstate that is maintained in its variablesdistinct from every other object even if they contain the same dataall instance variables of all objects of its classunchecked exceptionException Handlingmessages toitself to a string representation using the toString methodmethods from other objects using the 'private' keywordother objects that a condition variable has changedpublic interfaceString name = new String();An exception that is exempted from compile-time checking because it can occur at many points in the program and recovery from them is difficult or impossible . A Java program declaring such exceptions would be cluttered, pointlessly.messages fromone copy of each class variable of its class with the other instances of its classa string using the toString methodinstance methods and instance variables from
  • the class to which it belongs
  • all that class's superclasses
its class using the getClass methodany entity to which you can associate properties and behaviour0 or more condition variablessomething goes wrong in the execution of a program
  • declaring and initializing it such that it is created whenever execution enters a particular block, or, in the case of an instance variable, when an instance is created, for example:
    String aString = "some text";
  • or by declaring it and initializing it later using the new operator, for example:
    String aString;
    aString = new String("some text");
several different variables at the same timeException class

Next exceptionbuilt-in exception    Upexception    Previous exceptionprogrammer-created exception class