io.github.hpsocket.soa.starter.web.cloud.exception.CloudExceptionInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hp-soa-starter-web-cloud Show documentation
Show all versions of hp-soa-starter-web-cloud Show documentation
hp-soa: a fully functional, easy-to-use, and highly scalable microservice framework
The newest version!
package io.github.hpsocket.soa.starter.web.cloud.exception;
import java.time.LocalDateTime;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
/** Spring Cloud 异常信息 */
@Getter
@Setter
@NoArgsConstructor
public class CloudExceptionInfo
{
private Integer statusCode;
private Integer resultCode;
private String exception;
private String message;
private LocalDateTime timestamp;
private Integer status;
private String path;
private String error;
}