com-dot-app-sancharsaathi-1-5-0.apk

Download file
    package com.pairip.licensecheck;

public final class LicenseCheckException extends Exception {
    public LicenseCheckException(String str) {
        super(str);
    }

    public LicenseCheckException(String str, Throwable th) {
        super(str, th);
    }
}
    
Download file