package com.ks.app.exception.vip; public class OrderException extends Exception { private int code; private String msg; public OrderException(int code, String msg) { this.code = code; this.msg = msg; } }