Files
bsky-social-app/src/lib/media/video/errors.ts
T
2026-08-25 14:38:33 -07:00

14 lines
298 B
TypeScript

export class VideoTooLargeError extends Error {
constructor() {
super('Videos cannot be larger than 300 MB')
this.name = 'VideoTooLargeError'
}
}
export class UploadLimitError extends Error {
constructor(message: string) {
super(message)
this.name = 'UploadLimitError'
}
}