package com.xcong.excoin.common.exception; import lombok.Getter; @Getter public class GlobalException extends RuntimeException { public GlobalException(String msg) { super(msg); } }