为什么我在收到文件时会收到“UnsupportedOperationException”?

时间:2017-12-12 08:36:53

标签: java

我有一个小组作业,每当我收到文件时,它说     抛出新的UnsupportedOperationException(“尚不支持。”);

这究竟是什么意思?我该如何解决/阻止它呢?

以下是我收到的其中一个文件:

public class CustomNamingStrategy extends SpringPhysicalNamingStrategy{

    ...

    @Override
    public Identifier toPhysicalColumnName(Identifier name
                , JdbcEnvironment jdbcEnvironment) {
        return getIdentifier(name.toString(), name.isQuoted(), jdbcEnvironment);
    }

}

1 个答案:

答案 0 :(得分:1)

UnsupportedOperationException更像NotYetImplementedTODOInsertYourCodeHere。只需删除throw new UnsupportedOperationException("Not supported yet.");行,然后将代码放在那里。