Added December 27, 2018.
Special case Klein Gordon (nonlinear). Solve for
Mathematica ✗
ClearAll["Global`*"]; pde = Laplacian[u[x, y], {x, y}] + u[x, y]^2 == 0; sol = AbsoluteTiming[TimeConstrained[DSolve[pde, u[x, y], {x, y}], 60*10]];
Failed
Maple ✓
restart; pde := diff(u(x,y),x$2)+diff(u(x,y),y$2)+u(x,y)^2=0; cpu_time := timelimit(60*10,CodeTools[Usage](assign('sol',pdsolve(pde,u(x,y))),output='realtime'));
____________________________________________________________________________________