0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-21 13:39:22 +01:00
posthog/hogvm/__tests__/catch2.hog
2024-11-18 13:38:25 +00:00

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}')
}