Bonjour,

Le code suivant que je recopie pourtant tel quel provoque une erreur "cannot find symbol" pourquoi ?

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
class Point
{
 
	private int x, y, dx, dy;
 
	public Point(int x, int y) throws ErrConst
	{
	if((x<0) || (y<0)) throw new ErrConst();
	this.x = x;
	this.y = y;
	}
 
 
	public void deplace(int dx, int dy) throws ErrDepl
	{
	if (((x+dx)<0) || ((y+dy)<0)) throw ErrDepl();
	x+=dx;
	y+=dy;
	}
 
	public void affiche()
	{
	System.out.println("Coordonnées : " + x + " " + y);
	}
}
 
class ErrConst extends Exception
{}
 
class ErrDepl extends Exception
{}
 
 
public class Except1
{
	public static void main(String [] arg)
	{
		try
		{
		Point a = new Point(1,4);
		a.affiche();
 
		a = new Point(-1,5);
		a.affiche();
		}
		catch(ErrConst e)	
		{
		System.out.println("Erreur de construction !");
		System.exit(-1);
		}
		catch(ErrDepl e)
		{
		System.out.println("Erreur de déplacement !");
		System.exit(-1);	
		}
	}
}
Merci d'avance pour vos réponses