- Timestamp:
- 19/08/10 15:26:00 (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/applications/NXvalidate/src/org/nexusformat/nxvalidate/ValidatorUtils.java
r1507 r1511 27 27 28 28 import java.io.File; 29 import org.nexusformat.nxvalidate.exceptions.NX ConvertpyException;29 import org.nexusformat.nxvalidate.exceptions.NXvalidateException; 30 30 import java.util.logging.Level; 31 31 import java.util.logging.Logger; … … 133 133 * and the Schematron file. The returned file is the results file. 134 134 * @return the results file as a File object. 135 * @throws NX ConvertpyException135 * @throws NXvalidateException 136 136 */ 137 public File validate() throws NX ConvertpyException {137 public File validate() throws NXvalidateException { 138 138 139 139 File result = null; … … 148 148 "While converting \"" + nxsFile 149 149 + "\" to reduced xml format"); 150 throw new NX ConvertpyException("While converting \"" + nxsFile150 throw new NXvalidateException("While converting \"" + nxsFile 151 151 + "\" to reduced xml format"); 152 152 } … … 165 165 Logger.getLogger(ValidatorUtils.class.getName()).log(Level.SEVERE, 166 166 "While creating validation report"); 167 throw new NX ConvertpyException("While creating validation report");167 throw new NXvalidateException("While creating validation report"); 168 168 } 169 169 }
Note: See TracChangeset
for help on using the changeset viewer.
