Created
May 5, 2016 17:25
-
-
Save sowamazing/ea39c102be4fd703393cb0f2f532c551 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try | |
{ | |
// Your code that might throw an error | |
} | |
catch( ExceptionName e ) | |
{ | |
// What you want to do when the error is thrown | |
} | |
For instance, suppose we accidentally divide by zero. Our code would look like the following: | |
try | |
{ | |
int x = 1/0; | |
} | |
catch(DivideByZeroException e ) | |
{ | |
// What you want to do when the error is thrown | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment