I have user input
private Scanner inn = new Scanner(System.in);
String input = inn.nextLine().toLowerCase();
and i need to throw IllegalCharacterException(own exception, created this class already) for not desired input (all numerals and symbols and maybe even other languages)I need only english letters. How can i do that? Thank you.