mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-22 08:40:03 +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.name}: {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.name}: {e.message}')
|
|
} catch (e: FishError) {
|
|
print(f'FishError: {e.message}')
|
|
}
|