CoreID/app/assets/app/resource/APIParseError.js
2020-05-11 20:26:09 -05:00

6 lines
163 B
JavaScript

export default class APIParseError extends Error {
constructor(msg = 'An unknown error occurred while parsing the API response.') {
super(msg)
}
}