Fixed messages and comments for PermissionErrors

ref #39
This commit is contained in:
Nicolai Ort 2020-12-20 18:42:57 +01:00
parent 4ca85a1f22
commit c1d784e29c

View File

@ -13,7 +13,7 @@ export class PermissionNotFoundError extends NotFoundError {
} }
/** /**
* Error to throw when two permission' ids don't match. * Error to throw when two permissions' ids don't match.
* Usually occurs when a user tries to change a permission's id. * Usually occurs when a user tries to change a permission's id.
*/ */
export class PermissionIdsNotMatchingError extends NotAcceptableError { export class PermissionIdsNotMatchingError extends NotAcceptableError {
@ -21,11 +21,11 @@ export class PermissionIdsNotMatchingError extends NotAcceptableError {
name = "PermissionIdsNotMatchingError" name = "PermissionIdsNotMatchingError"
@IsString() @IsString()
message = "The id's don't match!! \n And if you wanted to change a permission's id: This isn't allowed" message = "The id's don't match!! \n And if you wanted to change a permission's id: This isn't allowed!"
} }
/** /**
* Error to throw when a permission get's provided without a principal. * Error to throw when a permission gets provided without a principal.
*/ */
export class PermissionNeedsPrincipalError extends NotAcceptableError { export class PermissionNeedsPrincipalError extends NotAcceptableError {
@IsString() @IsString()