so i've been sitting above this code for a while , ready the NullPointerException threads, and still can't figure out what is going wrong in my code, so i turn to you.
public class Main {
public static void main(String[] args){     
    /* Making catalog, loading last state */
    Collection catalog = new Collection();      
    try {
        catalog.readFromFile();
    } catch (ClassNotFoundException | IOException e) {
        e.printStackTrace();
    }
catalog.addShip(new Ship("ABC123", "John", "Suzuki", 50));
 }
}
And my Collection class looks like this:
public class Collection {
    private List<Ship> shipList;
    private String fileName = "catalog.txt";
    private int income;
    private int space;
public Collection() {
    shipList = new ArrayList<Ship>();
    income = 0;
    space = 500;
    File f = new File("catalog.txt");
    if(!f.exists()) {
        try {
            f.createNewFile();
            writeToFile();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }
}
public void addShip(Ship SHIP){
    space -= SHIP.LENGTH;
    income += SHIP.COST;
    shipList.add(SHIP);
}
public Ship getShip(int INDEX){
    return shipList.get(INDEX);
}
public void writeToFile() throws IOException {
    FileOutputStream f = new FileOutputStream(fileName);
    ObjectOutputStream out = new ObjectOutputStream(f);
    out.writeObject(shipList);
    out.close();        
    }
@SuppressWarnings("unchecked")
public void readFromFile() throws IOException, ClassNotFoundException {
    FileInputStream f = new FileInputStream(fileName);
    ObjectInputStream in = new ObjectInputStream(f);
    shipList = (ArrayList<Ship>)in.readObject();
    in.close();
}
public int getIncome(){
    return income;
}
public int getSpace(){
    return space;
}
}
My problem is, when i call in main catalog.addship() i get nullptr error. After following the console errors, it says i get the nullptrexc when i call the addShip() on the catalog, following from there i get the error when i add() a Ship to the Collection's shipList. So what i concluded, it is because the shipList in the Collection is uninitialized. But in the constructor i write shipList = new ArrayList<Ship>(); so it is clearly initialized. 
The exception stacktrace is the following:
Exception in thread "main" java.lang.NullPointerException
    at collection.Collection.addShip(Collection.java:31)
    at main.Main.main(Main.java:100)
 
     
    