about summary refs log tree commit diff
path: root/src/lib/media/video/errors.ts
blob: 701a7e2355d2d7a6d6c070f07190387449ecc1af (plain) (blame)
1
2
3
4
5
6
export class VideoTooLargeError extends Error {
  constructor() {
    super('Videos cannot be larger than 100MB')
    this.name = 'VideoTooLargeError'
  }
}