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