so my code doesnt work
public class Main {
public static void main(String[] args) {
String[] command = { "ls" };
var r = Runtime.getRuntime();
r.exec(command);
}
}```
errors: ```
DiscordBot.java:5: error: unreported exception IOException; must be caught or declared to be thrown
r.exec(command);
^
1 error
error: compilation failed```