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

com.boozallen.aissemble.configuration.exception.PropertyDaoException Maven / Gradle / Ivy

The newest version!
package com.boozallen.aissemble.configuration.exception;

/*-
 * #%L
 * aiSSEMBLE::Foundation::Configuration::Store
 * %%
 * Copyright (C) 2021 Booz Allen
 * %%
 * This software package is licensed under the Booz Allen Public License. All Rights Reserved.
 * #L%
 */

public class PropertyDaoException extends RuntimeException{
    public PropertyDaoException() {
        super();
    }

    public PropertyDaoException(String message, Throwable cause) {
        super(message, cause);
    }

    public PropertyDaoException(String message) {
        super(message);
    }

    public PropertyDaoException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy