exception typos fixed
This commit is contained in:
@@ -245,7 +245,7 @@ class workshop_accumulative_strategy implements workshop_strategy {
|
||||
global $DB;
|
||||
|
||||
if (!isset($data->nodims)) {
|
||||
throw new coding_expection('You did not send me the number of assessment dimensions to process');
|
||||
throw new coding_exception('You did not send me the number of assessment dimensions to process');
|
||||
}
|
||||
for ($i = 0; $i < $data->nodims; $i++) {
|
||||
$grade = new stdclass();
|
||||
|
||||
@@ -244,7 +244,7 @@ class workshop_comments_strategy implements workshop_strategy {
|
||||
global $DB;
|
||||
|
||||
if (!isset($data->nodims)) {
|
||||
throw new coding_expection('You did not send me the number of assessment dimensions to process');
|
||||
throw new coding_exception('You did not send me the number of assessment dimensions to process');
|
||||
}
|
||||
for ($i = 0; $i < $data->nodims; $i++) {
|
||||
$grade = new stdclass();
|
||||
|
||||
@@ -280,7 +280,7 @@ class workshop_numerrors_strategy implements workshop_strategy {
|
||||
global $DB;
|
||||
|
||||
if (!isset($data->nodims)) {
|
||||
throw new coding_expection('You did not send me the number of assessment dimensions to process');
|
||||
throw new coding_exception('You did not send me the number of assessment dimensions to process');
|
||||
}
|
||||
for ($i = 0; $i < $data->nodims; $i++) {
|
||||
$grade = new stdclass();
|
||||
|
||||
Reference in New Issue
Block a user