8 lines
227 B
TypeScript
8 lines
227 B
TypeScript
export class FeatureNotAvailablePlatformError extends Error {
|
|
constructor(feature: string, platform?: string) {
|
|
super(
|
|
`Platform error: ${feature} is not available on ${platform ?? 'current platform'}`
|
|
);
|
|
}
|
|
}
|