Here's the code I'm using:
public class Ser implements Serializable {
int x,y;
String name;
public Ser(int a, int b, String c) {
x=a;
y=b;
name = c;
}
}
import java.io.*;
public class testSer {
public static void main(String[] args) {
FileOutputStream testStream = new FileOutputStream("serText.ser");
ObjectOutputStream testOS = new ObjectOutputStream(testStream);
Ser objTest = new Ser(1,2, "Nikhil");
testOS.writeObject(objTest);
testOS.close();
}
}
Here are the errors I'm receiving:

I've created the *.ser file manually in the folder(although the book says compiler automatically creates one) but the problem still persists.
RELP!