import { BaseError } from '@/modules/shared/errors/base' export class InvalidAttachmentsError extends BaseError { static defaultMessage = 'Invalid comment attachments specified' static code = 'INVALID_ATTACHMENTS' } export class CommentCreateError extends BaseError { static defaultMessage = 'An error occurred while creating a new comment' static code = 'COMMENT_CREATE_ERROR' } export class CommentUpdateError extends BaseError { static defaultMessage = 'An error occurred while updating a comment' static code = 'COMMENT_UPDATE_ERROR' }