Fixed typo (#29790)

This commit is contained in:
Straighter
2019-04-12 19:04:22 +02:00
committed by The Coding Aviator
parent b7de2dff3f
commit ed601af6d8

View File

@ -3,7 +3,7 @@ title: Throw
---
## throw
The Java throw keyword is used to explicitly throw an exception.You can throw either checked or uncheked exception in java by throw keyword. The throw keyword is mainly used to throw custom exception.
The Java throw keyword is used to explicitly throw an exception. You can throw either checked or unchecked exception in java.
***Example:***
```java