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

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