Transpose::tperm
An error occurs because two dimensions are specified in the second argument of Transpose and the first argument has only one dimension:
Transpose[{1, 2, 3}, {2, 1}]This shows a valid permutation specification when the first argument in Transpose is a vector:
Transpose[{1, 2, 3}, {1}]