diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-31 13:58:38 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-31 13:58:38 -0400 |
commit | 534aed7f7cd700cc83a9d61f928bba6628e05c86 (patch) | |
tree | 66e8d883e78540151a1e2092f474c53b692af55e /src/lib/models/ModLog.ts | |
parent | edcc0dd0a9228192ff6c4f6d6797dd6238e98f92 (diff) | |
download | tanzanite-534aed7f7cd700cc83a9d61f928bba6628e05c86.tar.gz tanzanite-534aed7f7cd700cc83a9d61f928bba6628e05c86.tar.bz2 tanzanite-534aed7f7cd700cc83a9d61f928bba6628e05c86.zip |
throw error objects instead of strings
Diffstat (limited to 'src/lib/models/ModLog.ts')
-rw-r--r-- | src/lib/models/ModLog.ts | 42 |
1 files changed, 28 insertions, 14 deletions
diff --git a/src/lib/models/ModLog.ts b/src/lib/models/ModLog.ts index 6933432..33c758f 100644 --- a/src/lib/models/ModLog.ts +++ b/src/lib/models/ModLog.ts @@ -45,57 +45,71 @@ export class ModLog extends BaseModel<ModLogModel, ModLogModelCreationAttributes * The primary key of the modlog entry. */ public get id(): string { - return null; + throw new Error('This should never be executed'); + } + public set id(_: string) { + throw new Error('This should never be executed'); } - public set id(value: string) {} /** * The type of punishment. */ public get type(): ModLogType { - return null; + throw new Error('This should never be executed'); + } + public set type(_: ModLogType) { + throw new Error('This should never be executed'); } - public set type(value: ModLogType) {} /** * The user being punished. */ public get user(): Snowflake { - return null; + throw new Error('This should never be executed'); + } + public set user(_: Snowflake) { + throw new Error('This should never be executed'); } - public set user(value: Snowflake) {} /** * The user carrying out the punishment. */ public get moderator(): Snowflake { - return null; + throw new Error('This should never be executed'); + } + public set moderator(_: Snowflake) { + throw new Error('This should never be executed'); } - public set moderator(value: Snowflake) {} /** * The reason the user is getting punished */ public get reason(): string | null { - return null; + throw new Error('This should never be executed'); + } + public set reason(_: string | null) { + throw new Error('This should never be executed'); } - public set reason(value: string | null) {} /** * The amount of time the user is getting punished for. */ public get duration(): number | null { - return null; + throw new Error('This should never be executed'); + } + public set duration(_: number | null) { + throw new Error('This should never be executed'); } - public set duration(value: number | null) {} /** * The guild the user is getting punished in. */ public get guild(): Snowflake { - return null; + throw new Error('This should never be executed'); + } + public set guild(_: Snowflake) { + throw new Error('This should never be executed'); } - public set guild(value: Snowflake) {} static initModel(sequelize: Sequelize): void { ModLog.init( |