Problem with 'new' in constructor
I have created the following constructor:
StorageBusiness storageBusiness = new StorageBusiness("...");
But getting the following error message:
StorageBusiness.java:11: cannot resolve symbol
symbol : constructor StorageBusiness (java.lang.String)
location: class StorageBusiness
StorageBusiness storageBusiness = new StorageBusiness("....");
^
It's probably a Red Herring and I'm looking at the wrong thing but any help or tips would be appreciated.

