Skip to content
Snippets Groups Projects
Commit b77711c4 authored by Jakub Kolman's avatar Jakub Kolman
Browse files

[#81] feat: added procrustesAnalysis exception

parent b0f0ba96
No related branches found
No related tags found
No related merge requests found
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package cz.fidentis.analyst.procrustes.exceptions;
/**
*
* @author Jakub Kolman
*/
public class ProcrustesAnalysisException extends RuntimeException {
/**
* throws run time exception with message
* @param message
*/
public ProcrustesAnalysisException(String message) {
super(message);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment