Back to project page openhds-tablet.
The source code is released under:
OPENHDS PLATFORM OPENSOURCE LICENSE AGREEMENT Copyright (c) 2013 University of Southern Maine. All rights reserved. Redistribution and use in source and binary forms, with or without mo...
If you think the Android project openhds-tablet 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 org.openhds.mobile; public class BadXmlException extends Exception { private static final long serialVersionUID = 1L; public BadXmlException(String expectedXmlElement) { super("Bad XML: Expected element with tag name: " + expectedXmlElement); } }