// Network not supported
{
name: 'ProviderError',
code: 'NETWORK_NOT_SUPPORTED',
message: 'Phone number network not supported in this country',
provider: 'honeycoin',
details: {
phoneNumber: '+256123456789',
detectedNetwork: 'unknown',
supportedNetworks: ['MTN', 'Airtel']
}
}
// Country restrictions
{
name: 'ProviderError',
code: 'COUNTRY_RESTRICTED',
message: 'Transactions not available in this country',
provider: 'honeycoin',
details: {
detectedCountry: 'RW',
supportedCountries: ['UG', 'KE', 'TZ']
}
}
// Network maintenance
{
name: 'ProviderError',
code: 'NETWORK_MAINTENANCE',
message: 'Mobile network is under maintenance',
provider: 'honeycoin',
details: {
network: 'MTN',
country: 'UG',
estimatedRestoration: '2024-01-15T12:00:00Z'
}
}
// Daily limit exceeded
{
name: 'ProviderError',
code: 'DAILY_LIMIT_EXCEEDED',
message: 'Customer has exceeded daily transaction limit',
provider: 'honeycoin',
details: {
dailyLimit: 1000000,
currentTotal: 950000,
requestedAmount: 100000
}
}