Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Add minErr to ngResource and ngSanitize modules #3159

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/AngularPublic.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ function publishExternalAPI(angular){
'isNumber': isNumber,
'isElement': isElement,
'isArray': isArray,
'minErr': minErr,
'version': version,
'isDate': isDate,
'lowercase': lowercase,
Expand Down
6 changes: 4 additions & 2 deletions src/ngResource/resource.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
'use strict';

var ngResourceMinErr = angular.minErr('ngResource');

/**
* @ngdoc overview
* @name ngResource
Expand Down Expand Up @@ -448,8 +450,8 @@ angular.module('ngResource', ['ng']).
break;
case 0: break;
default:
throw "Expected up to 4 arguments [params, data, success, error], got " +
arguments.length + " arguments.";
throw ngResourceMinErr('badargs',
"Expected up to 4 arguments [params, data, success, error], got {0} arguments", arguments.length);
}

var isInstanceCall = data instanceof Resource;
Expand Down
4 changes: 3 additions & 1 deletion src/ngSanitize/sanitize.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
'use strict';

var ngSanitizeMinErr = angular.minErr('ngSanitize');

/**
* @ngdoc overview
* @name ngSanitize
Expand Down Expand Up @@ -269,7 +271,7 @@ function htmlParser( html, handler ) {
}

if ( html == last ) {
throw "Parse Error: " + html;
throw ngSanitizeMinErr('badparse', "The sanitizer was unable to parse the following block of html: {0}", html);
}
last = html;
}
Expand Down