| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- package org.yczbj.ycvideoplayerlib.tool;
- /**
- * <pre>
- * @author yangchong
- * blog : https://github.com/yangchong211
- * time : 2018/11/9
- * desc : 播放器异常
- * revise: 抛出异常并且供开发者快捷查询异常定位代码
- * </pre>
- */
- public class VideoException extends RuntimeException {
- private int mCode = 0;
- public VideoException(int code, String msg) {
- super(msg);
- mCode = code;
- }
- @Deprecated
- public VideoException(String msg) {
- super(msg);
- }
- public VideoException(Throwable throwable) {
- super(throwable);
- if (throwable instanceof VideoException) {
- mCode = ((VideoException) throwable).getCode();
- }
- }
- public int getCode() {
- return mCode;
- }
- public String getMsg() {
- return getMessage();
- }
- //自定义RenderView不能设置为null
- public static final int CODE_NOT_RENDER_FACTORY = 19;
- //PlayerFactory不能设置为null
- public static final int CODE_NOT_PLAYER_FACTORY = 20;
- //VideoPlayer,需要在start播放前给设置控制器Controller
- public static final int CODE_NOT_SET_CONTROLLER = 21;
- }
|