That fuck shit the fascists are using
at master 14 lines 293 B view raw
1package org.tm.archive.pin; 2 3public final class SvrWrongPinException extends Exception { 4 5 private final int triesRemaining; 6 7 public SvrWrongPinException(int triesRemaining){ 8 this.triesRemaining = triesRemaining; 9 } 10 11 public int getTriesRemaining() { 12 return triesRemaining; 13 } 14}