More documentation.

This commit is contained in:
Jindra Petřík
2024-08-08 19:27:14 +02:00
parent 68954e714d
commit b57e38e387
286 changed files with 11752 additions and 3576 deletions
@@ -17,11 +17,15 @@
package com.jpexs.decompiler.graph;
/**
*
* Exception thrown when there is a problem with translating the graph.
* @author JPEXS
*/
public class TranslateException extends RuntimeException {
/**
* Constructs new TranslateException with the specified detail message.
* @param s The detail message.
*/
public TranslateException(String s) {
super(s);
}