コンパイラーはどのコンストラクターを呼び出すかわからないため、引数なしのコンストラクターはエラーをスローします。解決策は何ですか?
private Test() throws Exception {
this(null);//THIS WILL THROW ERROR, I WAN'T TO CALL A SPECIFIC CONSTRUCTOR FROM THE TWO BELOW. HOW TO DO??
}
private Test(InputStream stream) throws Exception {
}
private Test(String fileName) throws Exception {
}