Line data Source code
1 : /// class to save the error data when usign the facebook SDK 2 : /// 3 : class FacebookAuthException implements Exception { 4 : /// the error code 5 : final String errorCode; // CANCELLED, FAILED, OPERATION_IN_PROGRESS 6 : 7 : /// the error message 8 : final String? message; 9 : 10 1 : FacebookAuthException(this.errorCode, this.message); 11 : }