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.

[507 byte] By [Student_20a] at [2007-10-3 3:46:39]
# 1
That's not the constructor, that's a use of the constructor.What the compiler is telling you is that there is no version of the constructor which takes a single String argument.
ejpa at 2007-7-14 21:43:26 > top of Java-index,Java Essentials,New To Java...
# 2
The error message isn't lying to you. You have no constructor in your StorageBusiness class which takes a String argument. If you think you do, show that constructor here, and maybe someone will show you where you goofed.
warnerjaa at 2007-7-14 21:43:26 > top of Java-index,Java Essentials,New To Java...
# 3
Perfect - thank you...all fixed
Student_20a at 2007-7-14 21:43:26 > top of Java-index,Java Essentials,New To Java...