/**
 * Admin review-moderation resource — domain errors.
 */

export class ReviewRemovalError extends Error {
  constructor(
    public readonly code: 'NOT_FOUND' | 'INVALID_STATE',
    message: string,
  ) {
    super(message);
    this.name = 'ReviewRemovalError';
  }
}
