From fb5ddd43bb1383e5e2d7f9c4f38df422fa98e647 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Wed, 20 Aug 2014 23:14:42 +0200 Subject: [PATCH] gsm: Use "self error:" instead of Exception signal The issue is that [] on: Error do: [] will not handle the Exception. Use the plain self error handling. --- GSM48.st | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GSM48.st b/GSM48.st index b0163dc..18b5f34 100644 --- a/GSM48.st +++ b/GSM48.st @@ -2093,8 +2093,8 @@ Osmo.TLVParserBase subclass: GSM48MSG [ ]. ]. - Exception signal: 'No one handles: ', classType asString, - ' and: ', messageType asString. + ^self error: 'No one handles: ', classType asString, + ' and: ', messageType asString. ] GSM48MSG class >> parseFrom: aStream [