package com.mes.exception; import lombok.Getter; @Getter public class ServiceException extends RuntimeException { private String code; public ServiceException(String code, String msg){ super(msg); this.code=code; } }