| 100 | } |
| 101 | |
| 102 | gf2n_not_supported::gf2n_not_supported(int n, string options) : |
| 103 | runtime_error( |
| 104 | "GF(2^" + to_string(n) + ") not supported" |
| 105 | + (options.empty() ? "" : ", options are " + options)) |
| 106 | { |
| 107 | } |
| 108 | |
| 109 | setup_error::setup_error(const string& error) : |
| 110 | runtime_error(error) |