1 23 24 package com.sun.enterprise.deployment.web; 25 26 28 29 public interface ErrorPageDescriptor { 30 31 32 public int getErrorCode(); 33 public void setErrorCode(int errorCode); 34 35 36 public String getExceptionType(); 37 public void setExceptionType(String exceptionType); 38 39 40 public String getLocation(); 41 public void setLocation(String location); 42 43 } 44 | Popular Tags |