package com.yeshi.buwan.exception; public class PPTVException extends Exception { private int code; private String msg; public PPTVException(int code, String msg) { this.code = code; this.msg = msg; } }