You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For expressing a (numeric/alpha/alphanumeric) identifier to refer to the specific error on the server side for logging purposes (i.e. a request number).
The logref attribute should be optional. Though, in Spring org.springframework.hateoas.VndErrors.VndError:
/**
* Creates a new {@link VndError} with the given logref, a message as well as some {@link Link}s.
*
* @param logref must not be {@literal null} or empty.
* @param message must not be {@literal null} or empty.
* @param links
*/
public VndError(String logref, String message, Link... links) {
Assert.hasText(logref, "Logref must not be null or empty!");
Assert.hasText(message, "Message must not be null or empty!");
this.logref = logref;
this.message = message;
this.add(Arrays.asList(links));
}
The text was updated successfully, but these errors were encountered:
According to the specification https://github.com/blongden/vnd.error
The logref attribute should be optional. Though, in Spring org.springframework.hateoas.VndErrors.VndError:
The text was updated successfully, but these errors were encountered: