Your "\ t" compiled as a tab - you need to avoid this:
private final ImageIcon placeHolder = new ImageIcon(
this.getClass().getClassLoader().getResource("Cards\\trans.png"));
Note the double backslash. This, of course, is not the only thing that is wrong, but this is the beginning ...
In fact, I would indicate it instead of a slash. In any case, this works on both Windows and Unix systems, and also works with jar files. The only reason I highlighted the double backslash was to raise the line drop point as a whole. Try the following:
private final ImageIcon placeHolder = new ImageIcon(
this.getClass().getClassLoader().getResource("Cards/trans.png"));
, , . Windows , jar. "" "" "TRANS.png" "trans.png", .