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

com.yahoo.bullet.dsl.BulletDSLException Maven / Gradle / Ivy

The newest version!
/*
 *  Copyright 2018, Yahoo Inc.
 *  Licensed under the terms of the Apache License, Version 2.0.
 *  See the LICENSE file associated with the project for terms.
 */
package com.yahoo.bullet.dsl;

/**
 * Exception to be thrown if there is an error in BulletConnector or BulletRecordConverter.
 */
public class BulletDSLException extends Exception {

    private static final long serialVersionUID = -4845209101137527167L;

    /**
     * Constructor to initialize BulletDSLException with a message.
     *
     * @param message The error message to be associated with this BulletDSLException.
     */
    public BulletDSLException(String message) {
        super(message);
    }

    /**
     * Constructor to initialize BulletDSLException with a message and a {@link Throwable} cause.
     *
     * @param message The error message to be associated with this BulletDSLException.
     * @param cause The reason for this BulletDSLException.
     */
    public BulletDSLException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy