I'm working through this tutorial on using the ArgumentParser package. Some of the code doesn't compile and I couldn't find any information on the class/struct RuntimeError when I google for it, is this just a madeup class that they forgot to define when writing this tutorial?
guard let input = try? String(contentsOfFile: inputFile) else {
throw RuntimeError("Couldn't read from '\(inputFile)'!")
}