Project

General

Profile

1
package eu.dnetlib.uoaorcidservice.handlers;
2

    
3

    
4
import java.util.Date;
5

    
6
public class ErrorDetails {
7
    private Date timestamp;
8
    private String message;
9
    private String details;
10

    
11
    public ErrorDetails(Date timestamp, String message, String details) {
12
        super();
13
        this.timestamp = timestamp;
14
        this.message = message;
15
        this.details = details;
16
    }
17
}
(3-3/5)