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

com.microsoft.azure.spring.data.documentdb.exception.DatabaseCreationException Maven / Gradle / Ivy

/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See LICENSE in the project root for
 * license information.
 */
package com.microsoft.azure.spring.data.documentdb.exception;

import org.springframework.dao.DataAccessException;
import org.springframework.lang.Nullable;

public class DatabaseCreationException extends DataAccessException {
    public DatabaseCreationException(String msg) {
        super(msg);
    }

    public DatabaseCreationException(@Nullable String msg, @Nullable Throwable cause) {
        super(msg, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy