Skip to content

Instantly share code, notes, and snippets.

@ZhdanRuslan
Created April 24, 2015 17:39
Show Gist options
  • Save ZhdanRuslan/46c2544e4caa0c8cc959 to your computer and use it in GitHub Desktop.
Save ZhdanRuslan/46c2544e4caa0c8cc959 to your computer and use it in GitHub Desktop.
com.javarush.test.level09.lesson06.task02
package com.javarush.test.level09.lesson06.task02;
/* Исключение при работе со строками
Перехватить исключение (и вывести его на экран), указав его тип, возникающее при выполнении кода:
String s = null;
String m = s.toLowerCase();
*/
public class Solution
{
public static void main(String[] args) throws Exception
{
try
{
String s = null;
String m = s.toLowerCase();
} catch (Exception exc){
System.out.println(exc);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment