package no.uio.ifi.refaktor.analyze.analyzers; import no.uio.ifi.refaktor.analyze.exceptions.IllegalExpressionFoundException; import no.uio.ifi.refaktor.analyze.exceptions.IllegalStatementFoundException; public interface Checker { void check() throws IllegalStatementFoundException, IllegalExpressionFoundException; }