export class UnknownObjectError extends ParserError {
  constructor (token: Token, objectId: string) {
    super(token, `object "${objectId}" not defined`)
    this.name = 'UnknownObjectError'
  }