$('#html-view').html(element);
                 _finalize(success);
             },
-            error: function(text){
-                /* only basic error message */
-                var errorArray = text.split("\n");
-                if (errorArray.length >= 3) {
-                    text = errorArray[2].split(":")[0];
-                }
-                $('#html-view').html('<p class="error">Wystąpił błąd: '+ text + '</p>');
+            error: function(text, source){
+                $('#html-view').html('<p class="error">Wystąpił błąd:</p><p>'+text+'</p><pre>'+source.replace(/&/g, '&').replace(/</g, '<')+'</pre>');
                 _finalize(failure);
             }
         });