|
@@ -82,13 +82,11 @@ public class Location
|
|
|
this.pitch = 0;
|
|
|
return;
|
|
|
}
|
|
|
- sc.getLogger().printException(new IllegalStringLocationException(location), "read.location", sc, sc.getActiveRealCodeLine());
|
|
|
- throw new HoldCodeException();
|
|
|
+ throw new IllegalStringLocationException(location);
|
|
|
}
|
|
|
catch(PatternSyntaxException | NumberFormatException ex)
|
|
|
{
|
|
|
- sc.getLogger().printException(new IllegalStringLocationException(location), "read.location", sc, sc.getActiveRealCodeLine());
|
|
|
- throw new HoldCodeException();
|
|
|
+ throw new IllegalStringLocationException(location);
|
|
|
}
|
|
|
}
|
|
|
|