GRAILS-1019: Allowing expressions to be used with the 'disabled' attribute for g...
[grails.git] / src / commons / org / codehaus / groovy / grails / exceptions / SourceCodeAware.java
blobc0cbc3875ae75a0495fc11c90835558fb656d0c8
1 package org.codehaus.groovy.grails.exceptions;
3 import java.io.Serializable;
5 /**
6 * An interface that represents an exception that is capable of providing more information about the source code
7 *
8 * @author Graeme Rocher
9 * @since 1.0
10 * <p/>
11 * Created: Nov 15, 2007
13 public interface SourceCodeAware extends Serializable {
14 String getFileName();
16 int getLineNumber();