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

com.yahoo.maha.parrequest2.ExecutorError Maven / Gradle / Ivy

There is a newer version: 6.158
Show newest version
// 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