(resolver: UriResolver, baseId: string, ref: string, msg?: string)
| 6 | readonly missingSchema: string |
| 7 | |
| 8 | constructor(resolver: UriResolver, baseId: string, ref: string, msg?: string) { |
| 9 | super(msg || `can't resolve reference ${ref} from id ${baseId}`) |
| 10 | this.missingRef = resolveUrl(resolver, baseId, ref) |
| 11 | this.missingSchema = normalizeId(getFullPath(resolver, this.missingRef)) |
| 12 | } |
| 13 | } |
nothing calls this directly
no test coverage detected