diff options
Diffstat (limited to 'smccSTAL/src/main')
| -rw-r--r-- | smccSTAL/src/main/java/at/gv/egiz/bku/smccstal/InfoBoxReadRequestHandler.java | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/smccSTAL/src/main/java/at/gv/egiz/bku/smccstal/InfoBoxReadRequestHandler.java b/smccSTAL/src/main/java/at/gv/egiz/bku/smccstal/InfoBoxReadRequestHandler.java index eeb97290..32e990c5 100644 --- a/smccSTAL/src/main/java/at/gv/egiz/bku/smccstal/InfoBoxReadRequestHandler.java +++ b/smccSTAL/src/main/java/at/gv/egiz/bku/smccstal/InfoBoxReadRequestHandler.java @@ -53,8 +53,8 @@ public class InfoBoxReadRequestHandler extends AbstractRequestHandler {                    .getCardPINProvider(),                    infoBox.getDomainIdentifier());            if (resp == null) { -            log.info("Got null as result->user cancelled"); -            return new ErrorResponse(6001); +            log.info("Infobox doesn't contain any data. Assume card is not activated."); +            throw new NotActivatedException();            } else {              try {                resp = DomainIdConverter.convertDomainId(resp, infoBox | 
