DATADOC-30 - Fixed typo in InvalidDocumentStoreApiUsageException.
This commit is contained in:
@@ -18,13 +18,13 @@ package org.springframework.data.document;
|
||||
|
||||
import org.springframework.dao.InvalidDataAccessApiUsageException;
|
||||
|
||||
public class InvalidDocumentStoreApiUageException extends InvalidDataAccessApiUsageException {
|
||||
public class InvalidDocumentStoreApiUsageException extends InvalidDataAccessApiUsageException {
|
||||
|
||||
public InvalidDocumentStoreApiUageException(String msg) {
|
||||
public InvalidDocumentStoreApiUsageException(String msg) {
|
||||
super(msg);
|
||||
}
|
||||
|
||||
public InvalidDocumentStoreApiUageException(String msg, Throwable cause) {
|
||||
public InvalidDocumentStoreApiUsageException(String msg, Throwable cause) {
|
||||
super(msg, cause);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user