Ignore:
Timestamp:
19/08/10 15:26:00 (21 months ago)
Author:
Stephen Rankin
Message:

Refactoring due to name change. ref#236.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/applications/NXvalidate/src/org/nexusformat/nxvalidate/NXconvert.java

    r1507 r1511  
    3030import java.util.logging.Level; 
    3131import java.util.logging.Logger; 
    32 import org.nexusformat.nxvalidate.exceptions.NXConvertpyException; 
     32import org.nexusformat.nxvalidate.exceptions.NXvalidateException; 
    3333 
    3434public class NXconvert { 
     
    6767    } 
    6868 
    69     public File convert() throws IOException, InterruptedException, NXConvertpyException { 
     69    public File convert() throws IOException, InterruptedException, NXvalidateException { 
    7070 
    7171        Logger.getLogger(NXconvert.class.getName()).log( 
     
    9999            buffer.append("\" failed. Returned "); 
    100100            buffer.append(exitValue); 
    101             throw new NXConvertpyException(buffer.toString()); 
     101            throw new NXvalidateException(buffer.toString()); 
    102102        } 
    103103        return redfile; 
Note: See TracChangeset for help on using the changeset viewer.