1
0
Files
AstralRinth/packages/utils/servers/errors/modrinth-servers-fetch-error.ts
2025-07-07 17:37:43 -07:00

11 lines
221 B
TypeScript

export class ModrinthServersFetchError extends Error {
constructor(
message: string,
public statusCode?: number,
public originalError?: Error,
) {
super(message)
this.name = 'PyroFetchError'
}
}