Android's default system path of your application database is /data/data/YOUR_PACKAGE/databases/YOUR_DB_NAME
Your logcat clearly says Failed to open database '/data/data/com.example.quotes/databasesQuotesdb'
Which means there is no file present on the given path or You have given the wrong path for the data file. As I can see there should be "/" after databases folder.
Your DB_PATH variable should end with a "/".
private static String DB_PATH = "/data/data/com.example.quotes/databases/";
Your correct path will be now "/data/data/com.example.quotes/databases/Quotesdb"