This repository has been archived by the owner on Feb 23, 2018. It is now read-only.
forked from irods-contrib/metalnx-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#15 built factory, tests, and interface for specific query provider..…
…next implement for postgres
- Loading branch information
1 parent
023101b
commit f27cc59
Showing
12 changed files
with
2,148 additions
and
1,766 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
...main/java/com/emc/metalnx/core/domain/exceptions/UnsupportedDataGridFeatureException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/** | ||
* | ||
*/ | ||
package com.emc.metalnx.core.domain.exceptions; | ||
|
||
/** | ||
* Signals an attempt at an operation not supported on the target data grid (due | ||
* to version difference, plugin availability difference etc. | ||
* | ||
* @author Mike Conway - NIEHS | ||
* | ||
*/ | ||
public class UnsupportedDataGridFeatureException extends DataGridException { | ||
|
||
private static final long serialVersionUID = 386934177608694036L; | ||
|
||
/** | ||
* | ||
*/ | ||
public UnsupportedDataGridFeatureException() { | ||
} | ||
|
||
/** | ||
* @param msg | ||
*/ | ||
public UnsupportedDataGridFeatureException(String msg) { | ||
super(msg); | ||
} | ||
|
||
} |
Oops, something went wrong.