Back to project page WhereIParked.
The source code is released under:
GNU General Public License
If you think the Android project WhereIParked 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.cachirulop.whereiparked.common.exception; /*from w ww .j a v a 2 s . c om*/ public class MapsForgeException extends Exception { /** * Default serialVersionUID generated by the compiler */ private static final long serialVersionUID = 1L; /** * Constructs a new object with the message received as parameter * * @param msg * Error message of the exception */ public MapsForgeException (String msg) { super (msg); } }