This commit is contained in:
Reece Browne
2026-02-25 18:20:24 +00:00
committed by GitHub
parent 9438b8db29
commit 213f136882
@@ -263,7 +263,7 @@ export class SaasBillingService {
throw error; throw error;
} }
throw new Error('Failed to fetch billing status'); throw new Error('Failed to fetch billing status', { cause: error });
} }
} }
@@ -313,7 +313,7 @@ export class SaasBillingService {
throw error; throw error;
} }
throw new Error('Failed to open billing portal'); throw new Error('Failed to open billing portal', { cause: error });
} }
} }
@@ -428,7 +428,7 @@ export class SaasBillingService {
throw error; throw error;
} }
throw new Error('Failed to create checkout session'); throw new Error('Failed to create checkout session', { cause: error });
} }
} }
} }