Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

throw io exception java

public static void foo() throws IOException {
    // some code here, when something goes wrong, you might do:
    throw new IOException("error message");
}

public static void main(String[] args) {
    try {
        foo();
    } catch (IOException e) {
        System.out.println(e.getMessage());
    }
}
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #throw #io #exception #java
ADD COMMENT
Topic
Name
7+2 =