Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用bugsense SDK 并想知道我的 API 后端是否出现故障。异常信息是强制性的。我在 Java Exception 库中搜索了与服务器可用性相关的异常,但找不到任何异常。
Java 或 Android 是否有任何与此相关的异常?如果不是,是否建议创建我自己的异常类?
您可以创建自己的。你可以扩展Exception类。就像是:
Exception
class YourException extends Exception { }
只需创建自己的。这样做很简单,只需扩展 Exception。