com.microsoft.azure.spring.data.documentdb.exception.IllegalQueryException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-data-documentdb Show documentation
Show all versions of spring-data-documentdb Show documentation
Spring Data for Azure Cosmos DB DocumentDB API
/**
* 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 IllegalQueryException extends DataAccessException {
public IllegalQueryException(String msg) {
super(msg);
}
public IllegalQueryException(@Nullable String msg, @Nullable Throwable cause) {
super(msg, cause);
}
}