Derby DB is not working on mac.

Hi ! I have developed a Java application using Derby Database. The application jar file is successfully running on Windows but on Mac it gives and exception as following:

  ClassNotFoundException: org.apache.derby.jdbc.EmbeddedDriver

I am pasting code for database Connection which I wrote.

         String dbdriver = "org.apache.derby.jdbc.EmbeddedDriver";
         Class.forName(dbdriver).newInstance();
         con = DriverManager.getConnection("jdbc:derby:C:\\4DSOFTECHDB; create = true"); 

Note: This exception occurs only on Mac OS.