Transpose::newdims
An error occurs because the outer dimension is omitted from the permutation specification:
Transpose[{{{1, 2}}, {{3, 4}}}, {3, 3, 2}]This shows a valid permutation specification in Transpose:
Transpose[{{{1, 2}}, {{3, 4}}}, {1, 3, 2}]