com.yahoo.maha.parrequest2.ExecutorError Maven / Gradle / Ivy
// Copyright 2017, Yahoo Holdings Inc.
// Licensed under the terms of the Apache License 2.0. Please see LICENSE file in project root for terms.
package com.yahoo.maha.parrequest2;
import java.util.function.Function;
/**
* Created by hiral on 3/26/14.
*/
abstract public class ExecutorError implements Function {
public final String stage;
public final String message;
public ExecutorError(String stage, String message) {
this.stage = stage;
this.message = message;
}
@Override
public boolean equals(Object object) {
//don't care, DON'T USE IT
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy