mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-21 13:39:22 +01:00
36 lines
898 B
Plaintext
36 lines
898 B
Plaintext
try {
|
|
try {
|
|
throw HogError('FishError', 'You forgot to feed your fish')
|
|
} catch (e: FoodError) {
|
|
print(f'Problem with your food: {e.message}')
|
|
}
|
|
} catch (e: FishError) {
|
|
print(f'FishError: {e.message}')
|
|
} catch (e: Error) {
|
|
print(f'Error: {e.message}')
|
|
}
|
|
|
|
try {
|
|
try {
|
|
throw HogError('FunkyError', 'You forgot to feed your fish')
|
|
} catch (e: FoodError) {
|
|
print(f'Problem with your food: {e.message}')
|
|
}
|
|
} catch (e: FishError) {
|
|
print(f'FishError: {e.message}')
|
|
} catch (e: Error) {
|
|
print(f'Error of type {e.type}: {e.message}')
|
|
}
|
|
|
|
try {
|
|
try {
|
|
throw HogError('FishError', 'You forgot to feed your fish')
|
|
} catch (e: FoodError) {
|
|
print(f'Problem with your food: {e.message}')
|
|
}
|
|
} catch (e: Error) {
|
|
print(f'Error of type {e.type}: {e.message}')
|
|
} catch (e: FishError) {
|
|
print(f'FishError: {e.message}')
|
|
}
|