org.apache.oodt.commons.exceptions.CommonsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oodt-commons Show documentation
Show all versions of oodt-commons Show documentation
Apache OODT Common Utilities Project
package org.apache.oodt.commons.exceptions;
/**
* Created by bugg on 27/10/15.
*/
public class CommonsException extends Exception {
public CommonsException(String message){
super(message);
}
}