/**
 * Admin outbox resource — domain errors.
 */

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