Package: ASTException
ASTException
| name | instruction | branch | complexity | line | method | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| ASTException(String) | 
 | 
 | 
 | 
 | 
 | ||||||||||||||||||||
| ASTException(String, Throwable) | 
 | 
 | 
 | 
 | 
 | ||||||||||||||||||||
Coverage
1: package de.fhdw.wtf.common.exception.ast;
2: 
3: /**
4:  * Represents exceptions related to errors in the abstract syntax tree (AST).
5:  */
6: public class ASTException extends RuntimeException {
7:         
8:         /**
9:          * Creates an ASTException from a message.
10:          * 
11:          * @param message
12:          *            The exception message.
13:          */
14:         public ASTException(final String message) {
15:                 super(message);
16:         }
17:         
18:         /**
19:          * Creates an ASTException from a message and a cause.
20:          * 
21:          * @param message
22:          *            The exception message.
23:          * @param cause
24:          *            The underlying cause.
25:          */
26:         public ASTException(final String message, final Throwable cause) {
27:                 super(message, cause);
28:         }
29:         
30: }