1

次のスニペットをコンパイルすると、「保存エラー: フィールド式の最初の用語は具体的な SObject である必要があります: 文字列」が表示されます。ここで何が欠けているか教えてください!ありがとう

private Attachment validateAttachment(Attachment attachment){
        String name = attachment.Name;
        String extension = name.substring(name.lastIndexOf('.'), name.length);
        if(acceptedExtension.contains(extension)){
            return attachment;
        }else{
            throw new Exceptions.AppException(); 
        }

}
4

1 に答える 1