workspace-tree-widget/src/main/java/org/gcube/portlets/user/workspace/server/FileNotVersionedException.java

32 lines
602 B
Java

/**
*
*/
package org.gcube.portlets.user.workspace.server;
/**
* The Class FileNotVersionedException.
*
* @author Francesco Mangiacrapa francesco.mangiacrapa{@literal @}isti.cnr.it
* Feb 20, 2017
*/
public class FileNotVersionedException extends Exception {
private static final long serialVersionUID = -954314398414781437L;
/**
* Instantiates a new file not versioned exception.
*/
FileNotVersionedException(){}
/**
* Instantiates a new file not versioned exception.
*
* @param string the string
*/
public FileNotVersionedException(String string) {
super(string);
}
}