KwickClips Java · 40 sec · free
Which one needs an object?
Short answer. throw, written as throw new Exception(...)
Where is throws written?
In the method heading, followed by exception class names.
throw vs throws
| Point | throw | throws |
|---|---|---|
| Job | raises one | warns caller |
| Where | method body | heading |
| Then | new object | class names |
Remember
| throw new Exception(...) |
| void f() throws IOException |
One letter apart, but a different job. See the difference. Throw raises one exception now. It sits in the method body. It needs a new object; throws lists class names. Remember. Throw new raises it. Throws in the heading passes it on.
This clip is from the full lesson: Exception Handling in Java — 7 minutes, with the tables, the quick answers and the whole lesson in text.
Useful for: CBSE Class 12 Information Technology (802), ISC Class 12 Computer Science (868), GSEB Std 12 Computer Studies, GSEB Std 12 Computer Studies
More KwickClips from this lesson
Why will my file program not compile?42 sec
Can a program survive 10 / 0?43 sec
How do you make your own exception?41 secVoice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.

