浏览代码

remove exception error handler for now, not a necessary example.

Ben Houston 10 年之前
父节点
当前提交
da09e160c7
共有 1 个文件被更改,包括 0 次插入7 次删除
  1. 0 7
      src/Three.js

+ 0 - 7
src/Three.js

@@ -25,13 +25,6 @@ if ( Math.sign === undefined ) {
 }
 
 
-THREE.ExceptionErrorHandler = function( message ) {
-	console.error( arguments );
-	var error = new Error( message );
-	error.optionalData = arguments;
-	throw error;
-};
-
 THREE.ConsoleErrorHandler = function() {
 	console.error( arguments );
 };