Back to project page wigle-wifi-wardriving-badfork.
The source code is released under:
/* * Copyright (c) 2010-2012, Andrew Carra, Robert Hagemann, Hugh Kennedy * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permi...
If you think the Android project wigle-wifi-wardriving-badfork 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 net.wigle.wigleandroid; //from ww w .ja v a 2 s .c o m /** * Make db exceptions checked, so the compiler will help make sure we deal with them * @author bobzilla */ public class DBException extends Exception { private static final long serialVersionUID = 2011052800L; public DBException(final String message, final Throwable throwable) { super( message, throwable ); } }