play.exceptions.SourceAttachment Maven / Gradle / Ivy
package play.exceptions;
import java.util.List;
/**
* Exception has source attachment
*/
public interface SourceAttachment {
String getSourceFile();
List getSource();
Integer getLineNumber();
}