Oh checked exceptions how I missed you ``` ...
# random
j
Oh checked exceptions how I missed you
Copy code
try {
            Log.d("", String.valueOf(sig.verify(rawSignature)));
        } catch (IOException e) {
            e.printStackTrace();
        } catch (NoSuchAlgorithmException e) {
            e.printStackTrace();
        } catch (InvalidKeyException e) {
            e.printStackTrace();
        } catch (SignatureException e) {
            e.printStackTrace();
        } catch (InvalidKeySpecException e) {
            e.printStackTrace();
        }