1 12 13 package org.w3c.dom; 14 15 20 public interface DOMError { 21 28 public static final short SEVERITY_WARNING = 1; 29 35 public static final short SEVERITY_ERROR = 2; 36 44 public static final short SEVERITY_FATAL_ERROR = 3; 45 46 50 public short getSeverity(); 51 52 55 public String getMessage(); 56 57 70 public String getType(); 71 72 75 public Object getRelatedException(); 76 77 80 public Object getRelatedData(); 81 82 85 public DOMLocator getLocation(); 86 87 } 88 | Popular Tags |