exception handling 1 Flashcards
An ________ is an unexpected or error condition.
exception
is the name for the object-oriented techniques that manage or resolve such errors.
Exception Handling
Unplanned exceptions that occur during a program’s execution are also called ____.
runtime exceptions.
class represents more serious errors from which your program usually cannot recover.
Error
class represents more serious errors from which your program usually cannot recover.
Error
The ____ class comprises less serious errors that represent unusual conditions that arise while a program is running and from which the program can recover
Exception
term _____ probably evolved from the hardware error that occurs when a read/write head abruptly comes into contact with a hard disk, but the term has evolved to include software errors that cause program failure.
crash
The list of error messages after each attempted execution is called a
stack trace history list, or more simply, a stack trace.
The term ____ describes any process that is crucial to an organization.
mission critical
________ applications are designed so that they continue to operate, possibly at a reduced level, when some part of the system fails.
Fault-tolerant
_______ represents the degree to which a system is resilient to stress and able to continue functioning.
Robustness
______ is a segment of code that can handle an exception that might be thrown by the try block that precedes it.
catch block
A _________ is one that sends an Exception object out of a block or a method so that it can be handled elsewhere.
throw statement