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

/* JADX INFO: loaded from: classes.dex */
public class TvCommonException extends Exception implements TvExceptionConstant {
    public TvCommonException(String str) {
        super(str);
    }

    @Override // java.lang.Throwable
    public String getMessage() {
        return TvExceptionConstant.EXCEPTION_MSG_COMMON;
    }

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