DrawableException(String)   A
last analyzed

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
package org.gannacademy.cdf.graphics;
2
3
/**
4
 * Superclass of exceptions thrown by members of {@code org.gannacademy.cdf.graphics} package
5
 *
6
 * @author <a href="https://github.com/gann-cdf/graphics/issues" target="_blank">Seth Battis</a>
7
 */
8
public class DrawableException extends Exception {
9
  public DrawableException(String message) {
10
    super(message);
11
  }
12
}
13