diff --git a/Comparison/src/main/java/cz/fidentis/analyst/procrustes/exceptions/ProcrustesAnalysisException.java b/Comparison/src/main/java/cz/fidentis/analyst/procrustes/exceptions/ProcrustesAnalysisException.java
new file mode 100644
index 0000000000000000000000000000000000000000..faff89ddfb12f3b9a02d47a210fd559fb15c36a4
--- /dev/null
+++ b/Comparison/src/main/java/cz/fidentis/analyst/procrustes/exceptions/ProcrustesAnalysisException.java
@@ -0,0 +1,21 @@
+/*
+ * 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);
+    }
+}