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