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