Back to project page Tacere.
The source code is released under:
MIT License
If you think the Android project Tacere listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright (c) 2014 Jonathan Nelson/*from w w w .j a va 2 s. c o m*/ * Released under the BSD license. For details see the COPYING file. */ package org.ciasaboark.tacere.database; public class NoSuchEventInstanceException extends Exception { //auto-generated private static final long serialVersionUID = -1608125323748877959L; public NoSuchEventInstanceException() { } public NoSuchEventInstanceException(String message) { super(message); } }