1<?php
2
3namespace ComboStrap;
4
5/**
6 * To make a difference between a value that was not found
7 * and a value that was not created because the resource does not exists
8 *
9 * Generally, if you have not found in a function, you should throw a not exist
10 *
11 * It permits to control that the {@link ExceptionNotFound} exception does not
12 * come from a lower/called function
13 *
14 * A {@link ExceptionNotExists} should be not be thrown with a {@Link ExceptionNotFound}
15 * on the same method
16 *
17 * Example: {@link PageId} {@link ModificationDate} should be found if the resource exists
18 */
19class ExceptionNotExists extends ExceptionCompile
20{
21
22}
23