Back to project page PicSync.
The source code is released under:
Apache License
If you think the Android project PicSync listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.darrenmowat.gdcu.security; /*w w w .j av a2s . c om*/ /** * Exception which is thrown when this package has been signed differently or renamed * @author Darren Mowat * */ public class PackageSecurityException extends RuntimeException { private static final long serialVersionUID = 1L; private String userIdentifier; public PackageSecurityException(String msg, String userIdentifier) { super(msg); this.userIdentifier = userIdentifier; } /** * * @return the provided userIdentifier, may be null if one wasnt passed */ public String getUserIdentifier() { return userIdentifier; } }