Java JOptionPane Prompt showDbxAccessDeniedPrompt()

Here you can find the source of showDbxAccessDeniedPrompt()

Description

show Dbx Access Denied Prompt

License

Open Source License

Declaration

public static void showDbxAccessDeniedPrompt() 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

import javax.swing.JOptionPane;

public class Main {
    public static void showDbxAccessDeniedPrompt() {
        JOptionPane.showMessageDialog(null,
                "The application failed to connect to your Dropbox account.\nThis might mean that "
                        + "your access token is no longer valid or you are not connected to the Internet.",
                "Could not connect to Dropbox", JOptionPane.ERROR_MESSAGE);
    }//w w  w .ja va 2s. c om
}

Related

  1. askYesNo(String title, String prompt, Object... args)
  2. promptForDatsDir(Component parentComponent)
  3. promptForDecryptionPassword()
  4. promptForDelete(Component c, String title, String prompt)
  5. promptForDelete(Component c, String title, String prompt)