O. Carpeta « error »

Versión para imprimir.

A. error / datosnojson.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>Los datos recibidos no son JSON</title>
10
11</head>
12
13<body>
14
15 <h1>Los datos recibidos no son JSON</h1>
16
17 <p>
18 Los datos recibidos no están en formato JSON.
19 </p>
20
21</body>
22
23</html>

B. error / eliminadoincorrecto.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>El campo eliminado debe ser booleano</title>
10
11<body>
12
13 <h1>El campo eliminado debe ser booleano</h1>
14
15</body>
16
17</html>

C. error / errorinterno.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>Error interno del servidor</title>
10
11</head>
12
13<body>
14
15 <h1>Error interno del servidor</h1>
16
17 <p>Se presentó de forma inesperada un error interno del servidor.</p>
18
19</body>
20
21</html>

D. error / modificacionincorrecta.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>La modificacion debe ser número</title>
10
11<body>
12
13 <h1>La modificacion debe ser número</h1>
14
15</body>
16
17</html>

E. error / nombreincorrecto.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>El nombre debe ser texto</title>
10
11<body>
12
13 <h1>El nombre debe ser texto</h1>
14
15</body>
16
17</html>

F. error / resultadonojson.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>El resultado no puede representarse como JSON</title>
10
11</head>
12
13<body>
14
15 <h1>El resultado no puede representarse como JSON</h1>
16
17 <p>
18 Debido a un error interno del servidor, el resultado generado, no se puede
19 recuperar.
20 </p>
21
22</body>
23
24</html>

G. error / uuidincorrecto.html

1<!DOCTYPE html>
2<html lang="es">
3
4<head>
5
6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width">
8
9 <title>El uuid debe ser texto</title>
10
11<body>
12
13 <h1>El uuid debe ser texto</h1>
14
15</body>
16
17</html>