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

com.iodesystems.junit4.xsd.Failure Maven / Gradle / Ivy

The newest version!
package com.iodesystems.junit4.xsd;

import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlRootElement;
import jakarta.xml.bind.annotation.XmlValue;
import lombok.Data;


@XmlRootElement(name = "failure")
@Data
public class Failure implements Result {
  @XmlAttribute
  String message;
  @XmlAttribute
  String type;
  @XmlValue
  String stackTrace;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy