8f06ba70bb
Co-authored-by: Samuel Newman <10959775+mozzius@users.noreply.github.com> Co-authored-by: Hailey <me@haileyok.com>
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
export class VideoTooLargeError extends Error {
|
|
constructor() {
|
|
super('Videos cannot be larger than 100MB')
|
|
this.name = 'VideoTooLargeError'
|
|
}
|
|
}
|