* Inserts all loaded application templates into the selector's template
*
* @return void
- * @throws NullPointerException If $curr is null
- * @throws NoArrayException If $curr is not an array
- * @throws InvalidArrayCountException If $curr contains an
- * unexpected count of elements
+ * @throws NoArrayException If $curr is not an array
+ * @throws InvalidArrayCountException If $curr contains an
+ * unexpected count of elements
* @throws MissingArrayElementsException If $curr is missing expected
* array elements
* @todo Finish handling all applications here
$curr = $idx->current();
// Do some sanity checks on the loaded item
- if (is_null($curr)) {
- // $curr is null
- throw new NullPointerException($this, self::EXCEPTION_IS_NULL_POINTER);
- } elseif (!is_array($curr)) {
+ if (!is_array($curr)) {
// Not an array
throw new NoArrayException($curr, self::EXCEPTION_IS_NO_ARRAY);
} elseif (count($curr) != 2) {