react-native-vision-camera
Version:
A powerful, high-performance React Native Camera library.
12 lines (10 loc) • 391 B
text/typescript
import { CameraRuntimeError } from '../CameraError'
export class FrameProcessorsUnavailableError extends CameraRuntimeError {
constructor(reason: unknown) {
super(
'system/frame-processors-unavailable',
'Frame Processors are not available, react-native-worklets-core is not installed! ' +
`Error: ${reason instanceof Error ? reason.message : reason}`,
)
}
}