org.gannacademy.cdf.graphics.DrawableException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 3
dl 0
loc 3
c 0
b 0
f 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A DrawableException(String) 0 2 1
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