package com.perforce.common;
public class ConverterException extends Exception {
public ConverterException(String string, Exception e) {
System.err.println(string + "\n");
e.printStackTrace();
}
public ConverterException(String string) {
try {
throw new Exception(string);
} catch(Exception e) {
e.printStackTrace();
}
}
private static final long serialVersionUID = 1L;
}
# |
Change |
User |
Description |
Committed |
|
#1
|
12446 |
Paul Allen |
Branching using p4convert-rusty |
|
|
//guest/perforce_software/p4convert/src/com/perforce/common/ConverterException.java |
#1
|
9807 |
Paul Allen |
Initial import of p4-convert (from change 894340) |
|
|