| 2 | |
| 3 | #[error_code] |
| 4 | pub enum ErrorCode { |
| 5 | #[msg("Insuffiscient amount to transfer")] |
| 6 | InsuffiscientAmount, |
| 7 | #[msg("Subscription is inactive")] |
| 8 | SubscriptionInactive, |
| 9 | #[msg("payer is not the owner of the subscription")] |
| 10 | NotOwner, |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected