наверно так.
package objectstring;
import javax.swing.JOptionPane;
public class ObjectString {
public static void main(String[] args) {
try {
String line = JOptionPane.showInputDialog(null, "Введите строку: ");
if (line.matches(".*\\d.*")) {
throw new IllegalArgumentException("Внимание!!! Ошибка!!! Ваш код не должен содержать в себе цифр!!!");
}
System.out.println(line.toUpperCase());
System.out.println(line.toLowerCase());
System.out.println(line.substring(1, 5));
} catch (IllegalArgumentException e) {
System.out.println(e.getMessage());
}
}
}