com.yahoo.parsec.validation.ParsecErrorResponse Maven / Gradle / Ivy
// Copyright 2016 Yahoo Inc.
// Licensed under the terms of the Apache license. Please see LICENSE.md file distributed with this work for terms.
package com.yahoo.parsec.validation;
/**
* Error response bean data.
* @param detail message object type
*/
public class ParsecErrorResponse {
/** the error. */
private ParsecError error;
/**
* Gets the error.
*
* @return the error
*/
public ParsecError getError() {
return error;
}
/**
* Sets the error.
*
* @param error the error to set
*/
public void setError(ParsecError error) {
this.error = error;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy