All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy