All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.hpsocket.soa.starter.web.cloud.exception.CloudExceptionInfo Maven / Gradle / Ivy

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy