summaryrefslogtreecommitdiffstats
path: root/tests/bugs/concretizeNpe/model/ModelExceptionHandling.java
blob: 0778aec2227c2c6a3b204cad199f1383ab96db6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package model;

import java.lang.RuntimeException;

import base.ExceptionHandling;

public aspect ModelExceptionHandling extends ExceptionHandling {
    public pointcut scope() : within(*);

    protected RuntimeException convertCheckedException(Throwable t) {
        return new RuntimeException(t.getMessage(),t
}