Move BillingError to core-util.

This commit is contained in:
Alex Hart
2024-11-07 11:47:31 -04:00
committed by Greyson Parrelli
parent 1b4a390096
commit 03b6b2d591
3 changed files with 3 additions and 2 deletions

View File

@@ -0,0 +1,10 @@
/*
* Copyright 2024 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.signal.core.util.billing
class BillingError(
val billingResponseCode: Int
) : Exception()