Back to project page dropbox-android-sdk.
The source code is released under:
Copyright (c) 2009-2011 Dropbox Inc., http://www.dropbox.com/ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "So...
If you think the Android project dropbox-android-sdk 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.dropbox.client2.jsonextract; /*from w w w . j a v a 2s. c o m*/ /** * (Internal class for extracting JSON.) */ abstract class JsonBase<T> { public final T internal; public final String path; public JsonBase(T internal) { this(internal, null); } public JsonBase(T internal, String path) { this.internal = internal; this.path = path; } public JsonExtractionException error(String message) { return new JsonExtractionException(path, message, internal); } }