Subversion Repositories bacoAlunos

Rev

Rev 1306 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package pt.estgp.estgweb.services.expceptions;

public class FieldException extends ServiceException
{

    public 1.5.0/docs/api/java/lang/String.html">String field;


    public 1.5.0/docs/api/java/lang/String.html">String getField() {
        return field;
    }

    public FieldException(1.5.0/docs/api/java/lang/String.html">String msg)
        {
                super(msg);
        }

        public FieldException(1.5.0/docs/api/java/lang/String.html">String msg,1.5.0/docs/api/java/lang/Throwable.html">Throwable cause)
        {
                super(msg,cause);
        }

    public FieldException(1.5.0/docs/api/java/lang/String.html">String msg, 1.5.0/docs/api/java/lang/String.html">String field)
        {
                super(msg);
        this.field = field;
    }

        public FieldException(1.5.0/docs/api/java/lang/String.html">String msg,1.5.0/docs/api/java/lang/Throwable.html">Throwable cause, 1.5.0/docs/api/java/lang/String.html">String field)
        {
                super(msg,cause);
        this.field = field;
    }
}