package com.mstar.android.tvapi.common.exception;

/* JADX INFO: loaded from: classes.dex */
public class TvUnsupportedException extends TvCommonException {
    public TvUnsupportedException() {
        super(TvExceptionConstant.EXCEPTION_MSG_UNSUPPORTED);
    }

    public TvUnsupportedException(String str) {
        super(str);
    }

    public TvUnsupportedException(String str, Exception exc) {
        super(str, exc);
    }
}
