gmo 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79e0ab0b8c12c4da970e739be5d2c65a6fb9b234cd23577be0c98938d849442c
4
- data.tar.gz: 0fdd3a734f230f81c8f13226f0eb63b0a855d2e0d11578234d167dc0b2e02c01
3
+ metadata.gz: a32ab8f4bc845c8a87aefc7a9df5baddfba9f6123990145712e63b03d2ebaa19
4
+ data.tar.gz: bea8891e397aa236eb65b9ae49be7a0e6b459b10f59ff48ade2f526dbbd469df
5
5
  SHA512:
6
- metadata.gz: 97ba32e837e7541af8aad5d3780c8291fa183510bc63f057fb384afea6c2b1f9a34257ce8c0398adf8d52d0e23423cc9d745a103fca972e59c747960ede58ef8
7
- data.tar.gz: c42608e8dca0359e6aa2121a45dc1c3ac6f0178800bf7e30e915393026ee4a984d2a2462b1ed51a23c5ce0d1efa180d1f8b844682d42b2cef94a16273626cc88
6
+ metadata.gz: 1a3a0c7d20fb389436d2c328e54dea10645ca59fb08b94732d40655642b41f9a9dd823a492e080ef34c3c627f6891ec210e1dd4f8ceaa23212cfb6e76ca849b0
7
+ data.tar.gz: 44d69abc8b66d074f44dcb10807d9f17661c7ac8900a7732567c3b782a69bd10e4e8ff30b358a7cdb12a66652f45327d3af680d6fdc81242bff5fd90f9b26710
@@ -1,13 +1,15 @@
1
1
  language: ruby
2
2
  rvm:
3
- - rbx-2.1.1
4
3
  - ruby-head
5
4
  - 1.8.7
6
5
  - 2.0
7
6
  - 2.1
8
7
  - 2.2
9
- - 2.3.0
10
- - 2.4.0
8
+ - 2.3
9
+ - 2.4
10
+ - 2.5
11
+ - 2.6
12
+ - 2.7
11
13
  - jruby-18mode
12
14
  - jruby-19mode
13
15
  - jruby-head
@@ -20,6 +22,3 @@ matrix:
20
22
  - rvm: jruby-19mode
21
23
  - rvm: jruby-head
22
24
  - rvm: 1.8.7
23
- - rvm: rbx-2.1.1
24
- - rvm: 1.9.3
25
- - rvm: 1.9.2
@@ -1,5 +1,8 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 0.5.1
4
+ * Add more error codes [#37](https://github.com/t-k/gmo-payment-ruby/pull/37) (Thanks [@jagdeepsingh](https://github.com/jagdeepsingh))
5
+
3
6
  ## 0.5.0
4
7
  * Support CvsCancel API [#34](https://github.com/t-k/gmo-payment-ruby/pull/34) (Thanks [@mogulla3](https://github.com/mogulla3 ))
5
8
  * Fix typo [#29](https://github.com/t-k/gmo-payment-ruby/pull/29) (Thanks [@nishio-dens](https://github.com/nishio-dens))
@@ -228,14 +228,14 @@ module GMO
228
228
  '42G980000' => 'Card is not valid for transactions',
229
229
  '42G990000' => 'Card is not valid for transactions',
230
230
 
231
+ 'AMPL40505' => 'The input credit card is invalid',
232
+ 'AMPL40506' => 'A system error has occurred in the connected datacenter',
233
+ 'AMPL90000' => 'A system error has occurred in the connected datacenter',
231
234
  'AU1000001' => '[Settlement request] Failed to communicate with the connected settlement center',
232
235
  'AU1000002' => '[Settlement request] An input parameter error occurred while connecting to the settlement center',
233
236
  'AU1000003' => '[Settlement request] A transaction failure cancellation has occurred in the settlement center',
234
237
  'AU1000004' => '[Settlement request] An error has occurred in au simple OpenID connection termination',
235
238
  'AU1000005' => '[Operation canceled] Customer canceled the payment in au simple settlement',
236
- 'AMPL40505' => 'The input credit card is invalid',
237
- 'AMPL40506' => 'A system error has occurred in the connected datacenter',
238
- 'AMPL90000' => 'A system error has occurred in the connected datacenter',
239
239
 
240
240
  'BA1010001' => 'Shop ID is not specified',
241
241
  'BA1010005' => 'Shop ID length is incorrect',
@@ -263,6 +263,7 @@ module GMO
263
263
  'BA1090001' => 'Account Name is not specified',
264
264
  'BA1090003' => 'Account Name exceeds maximum allowed length',
265
265
  'BA1090008' => 'Account Name contains invalid characters',
266
+ 'BA1099999' => 'System error. Please wait and try again',
266
267
  'BA1100003' => 'Memo exceeds maximum allowed length',
267
268
  'BA1110001' => 'Deposit ID is not specified',
268
269
  'BA1110005' => 'Deposit ID length is incorrect',
@@ -283,6 +284,7 @@ module GMO
283
284
  'BA1520002' => 'Account not found for the for specified Bank ID (or has been deleted)',
284
285
  'BA1520071' => 'Account registration failed. Bank ID already exists (includes deleted Bank IDs)',
285
286
  'BA1530002' => 'Bank does not exist for the combination of Bank Code and Branch Code',
287
+ 'BA1540002' => 'Deposit not found for the specified Deposit ID .',
286
288
  'BA1540071' => 'Deposit registration failed. Deposit ID already exists',
287
289
  'BA1540072' => 'Deposit not found for the specified Deposit ID ',
288
290
  'BA1550071' => 'Deposit cancellation failed. Desposit is in a non-cancellable status',
@@ -296,7 +298,6 @@ module GMO
296
298
  'BA1640010' => 'Mail Deposit registration failed. Expire is invalid',
297
299
  'BA1650007' => 'Mail Deposit registration failed. Contract does not allow usage',
298
300
  'BA1660002' => 'Mail Deposit registration failed. Contact address has not been setup',
299
- 'BA1099999' => 'System error. Please wait and try again',
300
301
  'BA9000000' => 'System maintenance in progress',
301
302
  'B01000002' => 'Non-delivery due to mobile device email address change or rejection of the sender domain, etc',
302
303
  'B01000003' => 'Order Number does not exist in the Edy Center system',
@@ -348,6 +349,7 @@ module GMO
348
349
  'B01007005' => 'Settlement Notification URL is invalid (value error)',
349
350
  'B01007011' => 'User Email Address is invalid (attribute error)',
350
351
  'B01007021' => 'Mall Email Address is invalid (attribute error)',
352
+ 'B01007600' => 'Server unavailable',
351
353
  'B01009000' => 'Settlement Request - Merchant ID is invalid',
352
354
  'B01009001' => 'Settlement Request. Password is invalid',
353
355
  'B01009002' => 'Settlement Request - Order Number is invalid',
@@ -382,7 +384,6 @@ module GMO
382
384
  'B01009300' => '(300) HTTP-Status-MultipleChoices',
383
385
  'B01009301' => '(301) HTTP-Status-MovePermanently',
384
386
  'B01009302' => '(302) HTTP-Status-MovedTemporarily',
385
- 'B01007600' => 'Server unavailable',
386
387
  'B01009303' => '(303) HTTP-Status-SeeOther',
387
388
  'B01009304' => '(304) HTTP-Status-NotModified',
388
389
  'B01009305' => '(305) HTTP-Status-UseProxy',
@@ -449,12 +450,18 @@ module GMO
449
450
  'D01000002' => 'System communication error or transaction failure. Please contact support',
450
451
  'D01000099' => 'System communication error or transaction failure. Please contact support',
451
452
 
453
+ 'E00000000' => 'Since communication is for confirmation, no action is required.',
454
+ 'E00000001' => 'HTTP method is not POST.',
455
+ 'E00000002' => 'The Accept related items in the HTTP request header are incorrect.',
456
+ 'E00000003' => 'The Content-type item of the HTTP request header is incorrect.',
457
+ 'E00000010' => 'The HTTP content is empty or the format is incorrect.',
452
458
  'E01010001' => 'Shop ID not specified',
453
459
  'E01010008' => 'Shop ID contains invalid characters or is too long',
454
460
  'E01010010' => 'Shop ID is invalid',
455
461
  'E01020001' => 'Shop Password not specified',
456
462
  'E01020008' => 'Shop Password contains invalid characters or is too long',
457
463
  'E01030002' => 'Shop ID and Password are invalid',
464
+ 'E01030061' => 'Forced returns are not available.',
458
465
  'E01040001' => 'Order ID not specified',
459
466
  'E01040003' => 'Order ID too long',
460
467
  'E01040010' => 'Order ID previously used',
@@ -466,6 +473,7 @@ module GMO
466
473
  'E01060005' => 'Amount exceeds maximum allowed',
467
474
  'E01060006' => 'Amount contains non-numeric characters',
468
475
  'E01060010' => 'Capture Amount does not match Authorization Amount',
476
+ 'E01060021' => 'The transaction usage amount and the specified usage amount do not match.',
469
477
  'E01070005' => 'Tax/Shipping exceeds maximum allowed',
470
478
  'E01070006' => 'Tax/Shipping contains non-numeric characters',
471
479
  'E01080007' => 'User Authentication Flag is not 1 or 0',
@@ -478,6 +486,9 @@ module GMO
478
486
  'E01110002' => 'Access ID and Password are invalid',
479
487
  'E01110010' => 'Transaction settlement is not complete',
480
488
  'E01130012' => 'Card Company Abbreviation is too long',
489
+ 'E01160001' => 'The number of bonus splits is not specified.',
490
+ 'E01160007' => 'Non-numeric characters are included in the bonus split count.',
491
+ 'E01160010' => 'A value other than "2" is specified for the bonus split count.',
481
492
  'E01170001' => 'Card Number not specified',
482
493
  'E01170003' => 'Card Number too long',
483
494
  'E01170006' => 'Card Number contains non-numeric characters',
@@ -485,13 +496,20 @@ module GMO
485
496
  'E01180001' => 'Expiration Date not specified',
486
497
  'E01180003' => 'Expiration Date is not four characters in length',
487
498
  'E01180006' => 'Expiration Date contains non-numeric characters',
499
+ 'E01180008' => 'The expiration date format is incorrect.',
500
+ 'E01180011' => 'The expiration date format is incorrect.',
488
501
  'E01190001' => 'Site ID is not specified',
489
502
  'E01190008' => 'Site ID incorrectly formatted',
490
503
  'E01200001' => 'Site Password not specified',
504
+ 'E01200007' => 'The site ID is incorrect.',
491
505
  'E01200008' => 'Site Password incorrectly formatted',
492
506
  'E01210002' => 'Site ID and Password are invalid',
493
507
  'E01220001' => 'Member ID is not specified',
508
+ 'E01220005' => 'Member ID exceeds the maximum number of digits.',
494
509
  'E01220008' => 'Member ID incorrectly formatted',
510
+ 'E01220010' => 'The member ID format is incorrect.',
511
+ 'E01220012' => 'The length of the member ID is incorrect.',
512
+ 'E01230001' => 'The card registration serial number is not specified.',
495
513
  'E01230006' => 'Card Registration Consecutive Number contains non-numeric characters',
496
514
  'E01230009' => 'Card Registration Consecutive Number exceeds maximum registration capacity',
497
515
  'E01240002' => 'Card specified does not exist',
@@ -528,10 +546,74 @@ module GMO
528
546
  'E01460008' => 'Security Code incorrectly formatted',
529
547
  'E01470008' => 'Card Registration Consecutive Number incorrectly formatted',
530
548
  'E01480008' => 'Cardholder Name incorrectly formatted',
549
+ 'E01480011' => 'The maximum number of characters of the holder has been exceeded.',
531
550
  'E01490005' => 'Amount + Tax/Shipping exceeds maximum allowed',
551
+ 'E01500001' => 'Shop information character string is not set.',
552
+ 'E01500005' => 'The number of characters in the shop information string is incorrect.',
553
+ 'E01500012' => 'The shop information string is inconsistent with other items.',
554
+ 'E01510001' => 'Purchasing info string is not set.',
555
+ 'E01510005' => 'The number of characters in the purchasing information string is incorrect.',
556
+ 'E01510010' => 'The usage date format is incorrect.',
557
+ 'E01510011' => 'The usage date value is out of the specifiable range.',
558
+ 'E01510012' => 'The purchasing info string is inconsistent with other items.',
559
+ 'E01520002' => 'An invalid value is set in the user device information. Check the settings.',
560
+ 'E01530001' => 'Payment result return URL is not set.',
561
+ 'E01530005' => 'Payment result Return URL exceeds the maximum number of characters.',
562
+ 'E01540005' => 'When canceling payment The URL exceeds the maximum number of characters.',
563
+ 'E01550001' => 'The date and time information character string is not set.',
564
+ 'E01550005' => 'The number of characters in the date/time information character string is incorrect.',
565
+ 'E01550006' => 'The date and time information string contains invalid characters.',
566
+ 'E01590005' => 'The product code exceeds the maximum number of digits.',
567
+ 'E01590006' => 'The product code contains invalid characters.',
568
+ 'E01600001' => 'Member information check character string is not set.',
569
+ 'E01600005' => 'The member information check string exceeds the maximum number of characters.',
570
+ 'E01600012' => 'The member information check character string is inconsistent with other items.',
571
+ 'E01610005' => 'The number of retries is outside the range of 0 to 99.',
572
+ 'E01610006' => 'The number of retries is set to something other than a number.',
573
+ 'E01620005' => 'The session timeout value is outside the range of 0 to 9999.',
574
+ 'E01620006' => 'The session timeout value is set to something other than a number.',
575
+ 'E01630010' => 'When registering the card after the transaction, the transaction member ID does not match the parameter member ID.',
576
+ 'E01640010' => 'When registering the card after the transaction, the site ID of the transaction and the site ID of the parameter do not match',
577
+ 'E01650012' => 'The specified shop does not belong to the specified site.',
578
+ 'E01660013' => 'An unsupported value has been set for the language parameter.',
579
+ 'E01670013' => 'An unsupported value has been set for the output encoding.',
580
+ 'E01700001' => 'The number of items is incorrect.',
581
+ 'E01710001' => 'Transaction classification (continuous charging) is not set.',
582
+ 'E01710002' => 'The specified transaction category does not exist.',
583
+ 'E01730001' => 'No bonus amount is specified.',
584
+ 'E01730005' => 'The bonus amount exceeds the maximum number of digits.',
585
+ 'E01730006' => 'The product code is not "0000990".',
586
+ 'E01730007' => 'The bonus amount contains non-numeric characters.',
587
+ 'E01740001' => 'Terminal processing serial number is not specified.',
588
+ 'E01740005' => 'The terminal processing serial number exceeds the maximum number of digits.',
589
+ 'E01740007' => 'The terminal processing serial number contains non-numeric characters.',
590
+ 'E01750001' => 'No usage date is specified.',
591
+ 'E01750008' => 'The usage date format is incorrect.',
592
+ 'E01770002' => 'The classification is invalid.',
593
+ 'E01780002' => 'The validity check is invalid.',
594
+ 'E01790007' => 'The check date is invalid.',
595
+ 'E01790011' => 'The check date exceeds the maximum number of digits.',
532
596
  'E01800001' => 'PIN not specified',
533
597
  'E01800008' => 'PIN incorrectly formatted',
534
598
  'E01800010' => 'PIN is invalid',
599
+ 'E01800050' => 'The PIN is invalid. (0000 cannot be used).',
600
+ 'E01810001' => 'No magnetic stripe classification is specified.',
601
+ 'E01810008' => 'An illegal format has been set for the magnetic stripe category.',
602
+ 'E01820001' => 'Magnetic stripe information is not specified.',
603
+ 'E01820003' => 'The number of characters in the magnetic stripe information is incorrect.',
604
+ 'E01820008' => 'The format of the magnetic stripe information is incorrect.',
605
+ 'E01840010' => 'The combination of input parameters is invalid.',
606
+ 'E01850008' => 'The format of the update indicator is incorrect.',
607
+ 'E01860008' => 'The format of the card number mask flag is incorrect.',
608
+ 'E01870008' => 'The token type format is incorrect.',
609
+ 'E01880001' => 'The registered member ID is not specified.',
610
+ 'E01880002' => 'There is no member with the specified site ID and registered member ID.',
611
+ 'E01880008' => 'The format of the registered member ID is incorrect.',
612
+ 'E01890001' => 'The registered card registration serial number is not specified.',
613
+ 'E01890002' => 'The specified registered card does not exist.',
614
+ 'E01890006' => 'The registered card registration serial number contains non-numeric characters.',
615
+ 'E01890009' => 'The card registration serial number exceeds the maximum number that can be registered.',
616
+ 'E01999998' => '"001" is not specified in item 1 "Format version".',
535
617
  'E11010001' => 'Transaction settlement already complete',
536
618
  'E11010002' => 'Transaction settlement is not complete and thus can not be modified',
537
619
  'E11010003' => 'Transaction Process Classification can not be performed',
@@ -540,17 +622,25 @@ module GMO
540
622
  'E11010012' => 'Transaction process can not be performed because transaction is more than 180 days old',
541
623
  'E11010013' => 'Transaction process can not be performed because transaction is more than 180 days old',
542
624
  'E11010014' => 'Transaction process can not be performed because transaction is more than 180 days old',
625
+ 'E11010015' => 'We are unable to process the transaction because it has exceeded 180 days.',
626
+ 'E11010016' => 'We are unable to process the transaction because it has exceeded 180 days.',
627
+ 'E11010017' => 'We are unable to process the transaction because it has exceeded 180 days.',
543
628
  'E11010099' => 'Card can not be used',
544
629
  'E11010999' => 'Card can not be used',
630
+ 'E11310001' => 'Link payment cannot be executed because the specified order has not been called for link payment.',
631
+ 'E11310002' => 'This transaction cannot perform linked settlement as it may already have been completed.',
632
+ 'E11310003' => 'This transaction cannot be linked due to the number of retries being exceeded.',
633
+ 'E11310004' => 'This transaction cannot perform linked payments due to session timeout.',
634
+ 'E11310005' => 'Members who have already registered the card cannot execute card registration after the transaction. It violates the restrictions on card registration.',
545
635
  'E21010001' => 'User Authentication failed - please try again',
546
636
  'E21010007' => 'User Authentication failed - please try again',
637
+ 'E21010201' => 'Card does not support User Authentication',
638
+ 'E21010202' => 'Card does not support User Authentication',
547
639
  'E21010999' => 'User Authentication failed - please try again',
548
640
  'E21020001' => 'User Authentication failed - please try again',
549
641
  'E21020002' => 'User Authentication failed - please try again',
550
642
  'E21020007' => 'User Authentication failed - please try again',
551
643
  'E21020999' => 'User Authentication failed - please try again',
552
- 'E21010201' => 'Card does not support User Authentication',
553
- 'E21010202' => 'Card does not support User Authentication',
554
644
  'E31500014' => 'Request method must be POST, not GET',
555
645
  'E41170002' => 'Card can not be used',
556
646
  'E41170099' => 'Card Number is incorrect',
@@ -558,14 +648,25 @@ module GMO
558
648
  'E61010002' => 'Settlement process failed - please try again',
559
649
  'E61010003' => 'Settlement process failed - please try again',
560
650
  'E61020001' => 'Settlement method has been disabled',
651
+ 'E61030001' => 'It cannot be used with the current contract. Cancel the payment and check the setting status by inquiry.',
652
+ 'E61040001' => 'You cannot enter the card number. In the current contract, specify the card number... Do not link the card number as it is, but please implement token correspondence.',
561
653
  'E82010001' => 'Error executing transaction',
562
654
  'E90010001' => 'Duplicate transaction',
563
655
  'E91019999' => 'Settlement process failed - please try again',
564
656
  'E91020001' => 'System communication timeout - please try again',
657
+ 'E91029998' => 'The payment process failed.',
565
658
  'E91029999' => 'Settlement process failed - please try again',
566
659
  'E91050001' => 'Settlement process failed',
660
+ 'E91060001' => 'This is an internal system error. Please display the transaction failure to the customer.',
661
+ 'E91099996' => 'This is an internal system error.',
662
+ 'E91099997' => 'The requested API does not exist. Please check the URL.',
567
663
  'E91099999' => 'Settlement process failed - please try again',
568
664
  'E92000001' => 'System unable to process transaction - please try again',
665
+ 'E92000002' => 'The number of simultaneous processing exceeds the specified value.',
666
+ 'EX1000301' => 'The payment process failed because the specified token does not exist.',
667
+ 'EX1000302' => 'Payment processing failed because the specified token has already been used.',
668
+ 'EX1000303' => 'The payment process failed because the specified token has expired.',
669
+ 'EX1000304' => 'The payment process failed because the specified token is incorrect.',
569
670
 
570
671
  'F01001001' => 'Shop ID is not specified',
571
672
  'F01001008' => 'Shop ID contains non-alphanumeric characters or is more than 13 characters',
@@ -848,7 +949,6 @@ module GMO
848
949
  'N01001007' => 'Input tax amount mismatch error. Error occurred during execution. Process was not started',
849
950
  'N01001008' => 'Input settlement date error. Error occurred during execution. Process was not started',
850
951
  'N01001009' => 'Input settlement date error. Error occurred during execution. Process was not started',
851
- 'N10000001' => 'Transaction existance error. The current transaction does not exist',
852
952
  'N0C030C01' => 'Please try again later',
853
953
  'N0C030C03' => 'Please try again later',
854
954
  'N0C030C12' => 'Please try again later',
@@ -885,6 +985,11 @@ module GMO
885
985
  'N0C030G97' => 'This card is currently unavailable. Please contact your card company',
886
986
  'N0C030G98' => 'Please try again',
887
987
  'N0C030G99' => 'This card is currently unavailable. Please contact your card company',
988
+ 'N0K040026' => 'Please try again',
989
+ 'N0K040027' => 'An error occurred. Please contact the merchant',
990
+ 'N0K040028' => 'An error occurred. Please contact the merchant',
991
+ 'N0K040029' => 'An error occurred. Please contact the merchant',
992
+ 'N0K040037' => 'Usage is temporarily unavailable. Please contact the merchant',
888
993
  'N0N010007' => "Service is not offered on the customer's mobile phone",
889
994
  'N0N010008' => "Service is not offered on the customer's mobile phone",
890
995
  'N0N010009' => "Service is not offered on the customer's mobile phone",
@@ -901,12 +1006,7 @@ module GMO
901
1006
  'N0N020023' => 'This card is currently unavailable. Please contact your card company',
902
1007
  'N0N030038' => 'This card is currently unavailable because the PIN is incorrect. Please contact your card company',
903
1008
  'N0N040014' => 'An error occurred. Please contact the merchant',
904
- 'N0K040026' => 'Please try again',
905
- 'N0K040027' => 'An error occurred. Please contact the merchant',
906
- 'N0K040028' => 'An error occurred. Please contact the merchant',
907
- 'N0K040029' => 'An error occurred. Please contact the merchant',
908
1009
  'N0N040031' => 'Usage is temporarily unavailable. Please contact the merchant',
909
- 'N0K040037' => 'Usage is temporarily unavailable. Please contact the merchant',
910
1010
  'N0T000001' => 'Please try again',
911
1011
  'N0T000002' => 'Payment cannot be made because an available card has not been set. Please note that you must set the card in adavnce in order to pay with iD',
912
1012
  'N0T000003' => 'Payment cannot be made because an available card has not been set. Please note that you must set the card in adavnce in order to pay with iD',
@@ -917,6 +1017,7 @@ module GMO
917
1017
  'N0T000008' => 'Please try again',
918
1018
  'N0T000009' => 'This card is currently unavailable. Please contact your card company',
919
1019
  'N0T000010' => 'Please try again',
1020
+ 'N10000001' => 'Transaction existance error. The current transaction does not exist',
920
1021
 
921
1022
  'P01010002' => 'Failed to authenticate the input API',
922
1023
  'P01010003' => 'Invalid input parameter',
@@ -1217,16 +1318,6 @@ module GMO
1217
1318
  'S01009901' => 'Mobile Suica internal system error. Failed to process settlement request. Please wait awhile and try again from the purchase screen',
1218
1319
  'S01009902' => 'Mobile Suica system under maintenance. Failed to process settlement request. Please wait awhile and try again from the purchase screen',
1219
1320
 
1220
- 'WM1000001' => '[Settlement request] An input parameter error occurred while communicating with the settlement center (Message digest)',
1221
- 'WM1000002' => '[Settlement request] Connection not allowed by the settlement center',
1222
- 'WM1000003' => '[Settlement request] Failed to execute the settlement module in the settlement center',
1223
- 'WM1000004' => '[Settlement request] An input parameter error occurred while communicating with the settlement center (Reception parameters)',
1224
- 'WM1000005' => '[Settlement request] Failed to communicate with the settlement center',
1225
- 'WM1000006' => '[Settlement result] An parameter error occurred while receiving result from the settlement center (Reception parameters)',
1226
- 'WM1000007' => '[Settlement result] Double payment occurred in the settlement center',
1227
- 'WM1000008' => '[Settlement result] An internal error occurred (transition)',
1228
- 'WM1000009' => '[User cancel request] Payment transaction has already been canceled',
1229
- 'WM1000010' => '[User cancel request] An internal error occurred (transition)',
1230
1321
  'W0100W001' => 'Data type incorrect',
1231
1322
  'W0100W002' => 'UserId / Password does not exist',
1232
1323
  'W0100W003' => 'Receipt processing Company Code and Payment Code do not match',
@@ -1268,7 +1359,17 @@ module GMO
1268
1359
  'W0100W772' => 'Payment processing READ request payment DB UPDATE-time error',
1269
1360
  'W0100W773' => 'Payment processing SEARCH request payment DB OPEN-time error',
1270
1361
  'W0100W774' => 'Payment processing SEARCH request payment DB READ-time error',
1271
- 'W0100W775' => 'Payment processing SEARCH request payment DB UPDATE-time error'
1362
+ 'W0100W775' => 'Payment processing SEARCH request payment DB UPDATE-time error',
1363
+ 'WM1000001' => '[Settlement request] An input parameter error occurred while communicating with the settlement center (Message digest)',
1364
+ 'WM1000002' => '[Settlement request] Connection not allowed by the settlement center',
1365
+ 'WM1000003' => '[Settlement request] Failed to execute the settlement module in the settlement center',
1366
+ 'WM1000004' => '[Settlement request] An input parameter error occurred while communicating with the settlement center (Reception parameters)',
1367
+ 'WM1000005' => '[Settlement request] Failed to communicate with the settlement center',
1368
+ 'WM1000006' => '[Settlement result] An parameter error occurred while receiving result from the settlement center (Reception parameters)',
1369
+ 'WM1000007' => '[Settlement result] Double payment occurred in the settlement center',
1370
+ 'WM1000008' => '[Settlement result] An internal error occurred (transition)',
1371
+ 'WM1000009' => '[User cancel request] Payment transaction has already been canceled',
1372
+ 'WM1000010' => '[User cancel request] An internal error occurred (transition)'
1272
1373
  }.freeze
1273
1374
 
1274
1375
  API_ERROR_MESSAGES_JA = {
@@ -1357,14 +1458,14 @@ module GMO
1357
1458
  '42G970000' => 'このカードでは取引をする事が出来ません。',
1358
1459
  '42G980000' => 'このカードでは取引をする事が出来ません。',
1359
1460
  '42G990000' => 'このカードでは取引をする事が出来ません。',
1461
+ 'AMPL40505' => '有効なクレジットカードではありません。',
1462
+ 'AMPL40506' => '後続センターにてシステムエラーが発生しました。',
1463
+ 'AMPL90000' => '後続センターにてシステムエラーが発生しました。',
1360
1464
  'AU1000001' => '【決済要求】後続決済センターとの通信に失敗しました。',
1361
1465
  'AU1000002' => '【決済要求】後続決済センターとの通信パラメータでエラーが発生しました。(受信パラメータ)',
1362
1466
  'AU1000003' => '【決済要求】後続決済センターで処理取消が実施されました。',
1363
1467
  'AU1000004' => '【決済要求】auかんたんOpenID連携解除でエラーが発生しました。',
1364
1468
  'AU1000005' => '【操作キャンセル】auかんたん決済でお客様がお支払をキャンセルしました。',
1365
- 'AMPL40505' => '有効なクレジットカードではありません。',
1366
- 'AMPL40506' => '後続センターにてシステムエラーが発生しました。',
1367
- 'AMPL90000' => '後続センターにてシステムエラーが発生しました。',
1368
1469
  'BA1010001' => 'Shop ID is not specified',
1369
1470
  'BA1010005' => 'Shop ID length is incorrect',
1370
1471
  'BA1020001' => 'Shop Pass is not specified',
@@ -1391,6 +1492,7 @@ module GMO
1391
1492
  'BA1090001' => 'Account Name is not specified',
1392
1493
  'BA1090003' => 'Account Name exceeds maximum allowed length',
1393
1494
  'BA1090008' => 'Account Name contains invalid characters',
1495
+ 'BA1099999' => 'System error. Please wait and try again',
1394
1496
  'BA1100003' => 'Memo exceeds maximum allowed length',
1395
1497
  'BA1110001' => 'Deposit ID is not specified',
1396
1498
  'BA1110005' => 'Deposit ID length is incorrect',
@@ -1411,6 +1513,7 @@ module GMO
1411
1513
  'BA1520002' => 'Account not found for the for specified Bank ID (or has been deleted)',
1412
1514
  'BA1520071' => 'Account registration failed. Bank ID already exists (includes deleted Bank IDs)',
1413
1515
  'BA1530002' => 'Bank does not exist for the combination of Bank Code and Branch Code',
1516
+ 'BA1540002' => '入金 ID エラー。入金指示取消時・入金指示照会時、存在しない入金 ID を指定しています。',
1414
1517
  'BA1540071' => 'Deposit registration failed. Deposit ID already exists',
1415
1518
  'BA1540072' => 'Deposit not found for the specified Deposit ID ',
1416
1519
  'BA1550071' => 'Deposit cancellation failed. Desposit is in a non-cancellable status',
@@ -1424,7 +1527,6 @@ module GMO
1424
1527
  'BA1640010' => 'Mail Deposit registration failed. Expire is invalid',
1425
1528
  'BA1650007' => 'Mail Deposit registration failed. Contract does not allow usage',
1426
1529
  'BA1660002' => 'Mail Deposit registration failed. Contact address has not been setup',
1427
- 'BA1099999' => 'System error. Please wait and try again',
1428
1530
  'BA9000000' => 'System maintenance in progress',
1429
1531
  'B01000002' => '【決済結果問合せ】楽天Edyセンタから発信する決済開始メールが不達となりました。不達の原因は、携帯端末側のメールアドレス変更、ドメイン拒否等が考えられます。',
1430
1532
  'B01000003' => '【決済結果問合せ】楽天Edyセンタに該当の注文番号が存在しません。',
@@ -1476,6 +1578,7 @@ module GMO
1476
1578
  'B01007005' => '決済完了URLの指定に誤りがあります(値エラー)',
1477
1579
  'B01007011' => '指定したユーザメールアドレスに誤りがあります(属性エラー)',
1478
1580
  'B01007021' => '指定したモールメールアドレスに誤りがあります(属性エラー)',
1581
+ 'B01007600' => 'サーバ閉塞中です',
1479
1582
  'B01009000' => '【決済申込み】加盟店IDの指定に誤りがあります',
1480
1583
  'B01009001' => '【決済申込み】パスワードの指定に誤りがあります',
1481
1584
  'B01009002' => '【決済申込み】注文番号の指定に誤りがあります',
@@ -1510,7 +1613,6 @@ module GMO
1510
1613
  'B01009300' => '(300)HTTP-Status-MultipleChoices',
1511
1614
  'B01009301' => '(301)HTTP-Status-MovePermanently',
1512
1615
  'B01009302' => '(302)HTTP-Status-MovedTemporarily',
1513
- 'B01007600' => 'サーバ閉塞中です',
1514
1616
  'B01009303' => '(303)HTTP-Status-SeeOther',
1515
1617
  'B01009304' => '(304)HTTP-Status-NotModified',
1516
1618
  'B01009305' => '(305)HTTP-Status-UseProxy',
@@ -1575,12 +1677,18 @@ module GMO
1575
1677
  'D01000001' => 'システムエラー(通信)/取引失敗を表示し、お問い合わせ下さい。',
1576
1678
  'D01000002' => 'システムエラー(通信)/取引失敗を表示し、お問い合わせ下さい。',
1577
1679
  'D01000099' => 'システムエラー(通信)/取引失敗を表示し、お問い合わせ下さい。',
1680
+ 'E00000000' => '疎通確認用のため、対処する必要はありません。',
1681
+ 'E00000001' => 'HTTPメソッドがPOSTではありません。',
1682
+ 'E00000002' => 'HTTPリクエストヘッダのAccept関連項目が正しくありません。',
1683
+ 'E00000003' => 'HTTPリクエストヘッダのContent-type項目が正しくありません。',
1684
+ 'E00000010' => 'HTTPコンテンツが空、またはフォーマットが正しくありません。',
1578
1685
  'E01010001' => 'ショップIDが指定されていません。',
1579
1686
  'E01010008' => 'ショップIDに半角英数字以外の文字が含まれているか、13文字を超えています。',
1580
1687
  'E01010010' => 'ショップIDが一致しません。',
1581
1688
  'E01020001' => 'ショップパスワードが指定されていません。',
1582
1689
  'E01020008' => 'ショップパスワードに半角英数字以外の文字が含まれているか、10 文字を超えています。',
1583
1690
  'E01030002' => '指定されたIDとパスワードのショップが存在しません。',
1691
+ 'E01030061' => '強制返品はご利用できません。設定を確認してください。',
1584
1692
  'E01040001' => 'オーダーIDが指定されていません。',
1585
1693
  'E01040003' => 'オーダーIDが最大文字数を超えています。',
1586
1694
  'E01040010' => '既にオーダーIDが存在しています。',
@@ -1592,6 +1700,7 @@ module GMO
1592
1700
  'E01060005' => '利用金額が最大桁数を超えています。',
1593
1701
  'E01060006' => '利用金額に数字以外の文字が含まれています。',
1594
1702
  'E01060010' => '取引の利用金額と指定した利用金額が一致していません。',
1703
+ 'E01060021' => '取引の利用金額と指定した利用金額が一致していません。',
1595
1704
  'E01070005' => '税送料が最大桁数を超えています。',
1596
1705
  'E01070006' => '税送料に数字以外の文字が含まれています。',
1597
1706
  'E01080007' => '3Dセキュア使用フラグに0,1以外の値が指定されています。',
@@ -1604,6 +1713,9 @@ module GMO
1604
1713
  'E01110002' => '指定されたIDとパスワードの取引が存在しません。',
1605
1714
  'E01110010' => '指定された取引は決済が完了していません。',
1606
1715
  'E01130012' => 'カード会社略称が最大バイト数を超えています。',
1716
+ 'E01160001' => 'ボーナス分割回数が指定されていません。設定を確認してください。',
1717
+ 'E01160007' => 'ボーナス分割回数に数字以外の文字が含まれています。設定を確認してください。',
1718
+ 'E01160010' => 'ボーナス分割回数に“2”以外を指定しています。再入力をお客様に依頼してください。',
1607
1719
  'E01170001' => 'カード番号が指定されていません。',
1608
1720
  'E01170003' => 'カード番号が最大文字数を超えています。',
1609
1721
  'E01170006' => 'カード番号に数字以外の文字が含まれています。',
@@ -1611,13 +1723,20 @@ module GMO
1611
1723
  'E01180001' => '有効期限が指定されていません。',
1612
1724
  'E01180003' => '有効期限が4桁ではありません。',
1613
1725
  'E01180006' => '有効期限に数字以外の文字が含まれています。',
1726
+ 'E01180008' => '有効期限の書式が正しくありません。再入力をお客様に依頼してください。',
1727
+ 'E01180011' => '有効期限の書式が正しくありません。再入力をお客様に依頼してください。',
1614
1728
  'E01190001' => 'サイトIDが指定されていません。',
1615
1729
  'E01190008' => 'サイトIDの書式が正しくありません。',
1616
1730
  'E01200001' => 'サイトパスワードが指定されていません。',
1731
+ 'E01200007' => 'サイトIDが正しくありません。設定を確認してください。',
1617
1732
  'E01200008' => 'サイトパスワードの書式が正しくありません。',
1618
1733
  'E01210002' => '指定されたIDとパスワードのサイトが存在しません。',
1619
1734
  'E01220001' => '会員IDが指定されていません。',
1735
+ 'E01220005' => '会員IDが最大桁数を超えています。設定を確認してください。',
1620
1736
  'E01220008' => '会員IDの書式が正しくありません。',
1737
+ 'E01220010' => '会員IDの書式が正しくありません。設定を確認してください。',
1738
+ 'E01220012' => '会員IDの長さが正しくありません。設定を確認してください。',
1739
+ 'E01230001' => 'カード登録連番が指定されていません。設定を確認してください。',
1621
1740
  'E01230006' => 'カード登録連番に数字以外の文字が含まれています。',
1622
1741
  'E01230009' => 'カード登録連番が最大登録可能数を超えています。',
1623
1742
  'E01240002' => '指定されたカードが存在しません。',
@@ -1654,10 +1773,74 @@ module GMO
1654
1773
  'E01460008' => 'セキュリティコードの書式が正しくありません。',
1655
1774
  'E01470008' => 'カード登録連番モードの書式が正しくありません。',
1656
1775
  'E01480008' => '名義人の書式が正しくありません。',
1776
+ 'E01480011' => '名義人の最大文字数を超えています。再入力をお客様に依頼してください。',
1657
1777
  'E01490005' => '利用金額・税送料の合計値が最大桁数を超えています。',
1778
+ 'E01500001' => 'ショップ情報文字列が設定されていません。設定を確認してください。',
1779
+ 'E01500005' => 'ショップ情報文字列の文字数が間違っています。設定を確認してください。',
1780
+ 'E01500012' => 'ショップ情報文字列が他の項目と矛盾しています。設定を確認してください。',
1781
+ 'E01510001' => '購買情報文字列が設定されていません。設定を確認してください。',
1782
+ 'E01510005' => '購買情報文字列の文字数が間違っています。設定を確認してください。',
1783
+ 'E01510010' => '利用日の書式が正しくありません。設定を確認してください。',
1784
+ 'E01510011' => '利用日の値が指定可能範囲外です。設定を確認してください。',
1785
+ 'E01510012' => '購買情報文字列が他の項目と矛盾しています。設定を確認してください。',
1786
+ 'E01520002' => 'ユーザー利用端末情報に無効な値が設定されています。設定を確認してください。',
1787
+ 'E01530001' => '決済結果戻り先URLが設定されていません。設定を確認してください。',
1788
+ 'E01530005' => '決済結果戻り先URLが最大文字数を越えています。設定を確認してください。',
1789
+ 'E01540005' => '決済キャンセル時URLが最大文字数を超えています。設定を確認してください。',
1790
+ 'E01550001' => '日時情報文字列が設定されていません。設定を確認してください。',
1791
+ 'E01550005' => '日時情報文字列の文字数が間違っています。設定を確認してください。',
1792
+ 'E01550006' => '日時情報文字列に無効な文字が含まれます。設定を確認してください。',
1793
+ 'E01590005' => '商品コードが最大桁数を超えています。設定を確認してください。',
1794
+ 'E01590006' => '商品コードに無効な文字が含まれます。設定を確認してください。',
1795
+ 'E01600001' => '会員情報チェック文字列が設定されていません。設定を確認してください。',
1796
+ 'E01600005' => '会員情報チェック文字列が最大文字数を超えています。設定を確認してください。',
1797
+ 'E01600012' => '会員情報チェック文字列が他の項目と矛盾しています。設定を確認してください。',
1798
+ 'E01610005' => 'リトライ回数が0~99の範囲外です。設定を確認してください。',
1799
+ 'E01610006' => 'リトライ回数に数字以外が設定されています。設定を確認してください。',
1800
+ 'E01620005' => 'セッションタイムアウト値が0~9999の範囲外です。設定を確認してください。',
1801
+ 'E01620006' => 'セッションタイムアウト値に数字以外が設定されています。設定を確認してください。',
1802
+ 'E01630010' => '取引後カード登録時、取引の会員IDとパラメータの会員IDが一致しません。設定を確認してください。',
1803
+ 'E01640010' => '取引後カード登録時、取引のサイトIDとパラメータのサイトIDが一致しません。設定を確認してください。',
1804
+ 'E01650012' => '指定されたショップは、指定されたサイトに属していません。設定を確認してください。',
1805
+ 'E01660013' => '言語パラメータにサポートされない値が設定されています。設定を確認してください。',
1806
+ 'E01670013' => '出力エンコーディングにサポートされない値が設定されています。設定を確認してください。',
1807
+ 'E01700001' => '項目数が誤っています。設定を確認してください。',
1808
+ 'E01710001' => '取引区分(継続課金)が設定されていません。設定を確認してください。',
1809
+ 'E01710002' => '指定された取引区分が存在しません。設定を確認してください。',
1810
+ 'E01730001' => 'ボーナス金額が指定されていません。設定を確認してください。',
1811
+ 'E01730005' => 'ボーナス金額が最大桁数を超えています。設定を確認してください。',
1812
+ 'E01730006' => '商品コードが”0000990”ではありません。設定を確認してください。',
1813
+ 'E01730007' => 'ボーナス金額に数字以外の文字が含まれています。設定を確認してください。',
1814
+ 'E01740001' => '端末処理通番が指定されていません。設定を確認してください。',
1815
+ 'E01740005' => '端末処理通番が最大桁数を超えています。設定を確認してください。',
1816
+ 'E01740007' => '端末処理通番に数字以外の文字が含まれています。設定を確認してください。',
1817
+ 'E01750001' => '利用日が指定されていません。設定を確認してください。',
1818
+ 'E01750008' => '利用日の書式が正しくありません。設定を確認してください。',
1819
+ 'E01770002' => '区分が不正です。設定を確認してください。',
1820
+ 'E01780002' => '有効性チェック有無が不正です。設定を確認してください。',
1821
+ 'E01790007' => 'チェック実施日が不正です。設定を確認してください。',
1822
+ 'E01790011' => 'チェック実施日が最大桁数を超えています。設定を確認してください。',
1658
1823
  'E01800001' => '暗証番号が未入力です。',
1659
1824
  'E01800008' => '暗証番号の書式が正しくありません。',
1660
1825
  'E01800010' => '暗証番号は利用できません。',
1826
+ 'E01800050' => '暗証番号が不正です。(0000は使用できません)。',
1827
+ 'E01810001' => '磁気ストライプ区分が指定されていません。設定を確認してください。',
1828
+ 'E01810008' => '磁気ストライプ区分に不正書式が設定されています。設定を確認してください。',
1829
+ 'E01820001' => '磁気ストライプ情報が指定されていません。設定を確認してください。',
1830
+ 'E01820003' => '磁気ストライプ情報の文字数が正しくありません。設定を確認してください。',
1831
+ 'E01820008' => '磁気ストライプ情報の書式が正しくありません。設定を確認してください。',
1832
+ 'E01840010' => '入力パラメータの組み合わせが不正です。',
1833
+ 'E01850008' => '更新区分の書式が正しくありません。',
1834
+ 'E01860008' => 'カード番号マスクフラグの書式が正しくありません。',
1835
+ 'E01870008' => 'トークンタイプの書式が正しくありません。',
1836
+ 'E01880001' => '登録済み会員IDが指定されていません。設定を確認してください。',
1837
+ 'E01880002' => '指定されたサイトIDと登録済み会員IDの会員が存在しません。設定を確認してください。',
1838
+ 'E01880008' => '登録済み会員IDの書式が正しくありません。設定を確認してください。',
1839
+ 'E01890001' => '登録済みカード登録連番が指定されていません。設定を確認してください。',
1840
+ 'E01890002' => '指定された登録済みカードが存在しません。設定を確認してください。',
1841
+ 'E01890006' => '登録済みカード登録連番に数字以外の文字が含まれています。設定を確認してください。',
1842
+ 'E01890009' => 'カード登録連番が最大登録可能数を超えています。設定を確認してください。',
1843
+ 'E01999998' => '項目1「フォーマットバージョン」に"001"が指定されていません。設定を確認してください。',
1661
1844
  'E11010001' => 'この取引は既に決済が終了しています。',
1662
1845
  'E11010002' => '取引エラー/決済を中止して、取引が出来ない事を通知して下さい。',
1663
1846
  'E11010003' => 'この取引は指定処理区分処理を行う事が出来ません。',
@@ -1666,17 +1849,25 @@ module GMO
1666
1849
  'E11010012' => '180日超えの取引のため、処理を行う事が出来ません。',
1667
1850
  'E11010013' => '180日超えの取引のため、処理を行う事が出来ません。',
1668
1851
  'E11010014' => '180日超えの取引のため、処理を行う事が出来ません。',
1852
+ 'E11010015' => '180日超えの取引のため、処理を行う事ができません。決済を中止して、取引ができないことをお客様に通知してください。',
1853
+ 'E11010016' => '180日超えの取引のため、処理を行う事ができません。決済を中止して、取引ができないことをお客様に通知してください。',
1854
+ 'E11010017' => '180日超えの取引のため、処理を行う事ができません。決済を中止して、取引が出来ない事を通知してください。',
1669
1855
  'E11010099' => 'このカードはご利用になれません。',
1670
1856
  'E11010999' => '特になし',
1857
+ 'E11310001' => '指定されたオーダーはリンク決済呼び出しされていないため、リンク決済を実行できません。',
1858
+ 'E11310002' => 'すでに取引が完了している可能性があるため、この取引はリンク決済を実行できません。',
1859
+ 'E11310003' => 'リトライ回数オーバーのため、この取引はリンク決済を実行できません。',
1860
+ 'E11310004' => 'セッションタイムアウトのため、この取引はリンク決済を実行できません。',
1861
+ 'E11310005' => 'すでにカードを登録している会員は、取引後カード登録を実行できません。カード登録の制限に抵触します。',
1671
1862
  'E21010001' => '3Dセキュア認証に失敗しました。もう一度、購入画面からやり直して下さい。',
1672
1863
  'E21010007' => '3Dセキュア認証に失敗しました。もう一度、購入画面からやり直して下さい。',
1864
+ 'E21010201' => 'このカードでは取引をする事が出来ません。3Dセキュア認証に対応したカードをお使い下さい。',
1865
+ 'E21010202' => 'このカードでは取引をする事が出来ません。3Dセキュア認証に対応したカードをお使い下さい。',
1673
1866
  'E21010999' => '3Dセキュア認証に失敗しました。もう一度、購入画面からやり直して下さい。',
1674
1867
  'E21020001' => '3Dセキュア認証に失敗しました。もう一度、è³¼入画面からやり直して下さい。',
1675
1868
  'E21020002' => '3Dセキュア認証がキャンセルされました。もう一度、購入画面からやり直して下さい。',
1676
1869
  'E21020007' => '3Dセキュア認証に失敗しました。もう一度、購入画面からやり直して下さい。',
1677
1870
  'E21020999' => '3Dセキュア認証に失敗しました。もう一度、購入画面からやり直して下さい。',
1678
- 'E21010201' => 'このカードでは取引をする事が出来ません。3Dセキュア認証に対応したカードをお使い下さい。',
1679
- 'E21010202' => 'このカードでは取引をする事が出来ません。3Dセキュア認証に対応したカードをお使い下さい。',
1680
1871
  'E31500014' => '-',
1681
1872
  'E41170002' => '入力されたカード会社に対応していません。別のカード番号を入力して下さい。',
1682
1873
  'E41170099' => 'カード番号に誤りがあります。再度確認して入力して下さい。',
@@ -1684,14 +1875,25 @@ module GMO
1684
1875
  'E61010002' => 'ご利用出来ないカードをご利用になったもしくはカード番号が誤っております。',
1685
1876
  'E61010003' => '決済処理に失敗しました。申し訳ございませんが、しばらく時間をあけて購入画面からやり直してください。',
1686
1877
  'E61020001' => '指定の決済方法は利用停止になっています。',
1878
+ 'E61030001' => '現在のご契約では、ご利用になれません。決済を中止し、問い合わせにて設定状況を確認してください。',
1879
+ 'E61040001' => 'カード番号を入力することはできません。現在のご契約では、カード番号を指定した…ド番号をそのまま連携するのではなく、トークン対応を実施ください。こちらのFAQをご参照ください。',
1687
1880
  'E82010001' => '実行中にエラーが発生しました。処理は開始されませんでした。',
1688
1881
  'E90010001' => '現在処理を行っているのでもうしばらくお待ち下さい。',
1689
1882
  'E91019999' => '決済処理に失敗しました。申し訳ございませんが、しばらく時間をあけて購入画面からやり直してください。',
1690
1883
  'E91020001' => '通信タイムアウトが発生しました。申し訳ございませんが、しばらく時間をあけて購入画面からやり直してください。',
1884
+ 'E91029998' => '決済処理に失敗しました。お客様に取引失敗を表示し、問い合わせにて状況を確認してください。',
1691
1885
  'E91029999' => '決済処理に失敗しました。申し訳ございませんが、しばらく時間をあけて購入画面からやり直してください。',
1692
1886
  'E91050001' => '決済処理に失敗しました。',
1887
+ 'E91060001' => 'システムの内部エラーです。お客様に取引失敗を表示してください。発生時刻や呼び出しパラメータをご確認のうえ、お問い合わせください。',
1888
+ 'E91099996' => 'システムの内部エラーです。発生時刻や呼び出しパラメータをご確認のうえ、お問い合わせください。',
1889
+ 'E91099997' => 'リクエストされたAPIは存在しません。URLをお確かめください。ご不明な場合、お問合せください。',
1693
1890
  'E91099999' => '決済処理に失敗しました。申し訳ございませんが、しばらく時間をあけて購入画面からやり直してください。',
1694
1891
  'E92000001' => '只今、大変込み合っていますので、しばらく時間をあけて再度決済を行ってください。',
1892
+ 'E92000002' => '同時処理数が規定値を越えています。',
1893
+ 'EX1000301' => '指定されたトークンは存在しないため、決済処理に失敗しました。もう一度カード番号を入力してください。',
1894
+ 'EX1000302' => '指定されたトークンは利用済みのため、決済処理に失敗しました。もう一度カード番号を入力してください。',
1895
+ 'EX1000303' => '指定されたトークンの有効期限が切れているため、決済処理に失敗しました。もう一度カード番号を入力してください。',
1896
+ 'EX1000304' => '指定されたトークンが正しくないため、決済処理に失敗しました。もう一度カード番号を入力してください。',
1695
1897
  'F01001001' => 'ショップIDが指定されていません。',
1696
1898
  'F01001008' => 'ショップIDに半角英数字以外の文字が含まれているか、13 文字を超えています。',
1697
1899
  'F01002001' => 'ショップパスワードが指定されていません。',
@@ -1971,7 +2173,6 @@ module GMO
1971
2173
  'N01001007' => '実行中にエラーが発生しました。処理は開始されませんでした。',
1972
2174
  'N01001008' => '実行中にエラーが発生しました。処理は開始されませんでした。',
1973
2175
  'N01001009' => '実行中にエラーが発生しました。処理は開始されませんでした。',
1974
- 'N10000001' => '該当する取引がありません。',
1975
2176
  'N0C030C01' => 'しばらくしてからやり直してください。',
1976
2177
  'N0C030C03' => 'しばらくしてからやり直してください。',
1977
2178
  'N0C030C12' => 'しばらくしてからやり直してください。',
@@ -2008,6 +2209,11 @@ module GMO
2008
2209
  'N0C030G97' => '現在このカードはお取扱できません。カード会社にお問合せください。',
2009
2210
  'N0C030G98' => 'もう一度やり直してください。',
2010
2211
  'N0C030G99' => '現在このカードはお取扱できません。カード会社にお問合せください。',
2212
+ 'N0K040026' => 'もう一度やり直してください。',
2213
+ 'N0K040027' => 'エラーが発生しました。店舗までお問合せください。',
2214
+ 'N0K040028' => 'エラーが発生しました。店舗までお問合せください。',
2215
+ 'N0K040029' => 'エラーが発生しました。店舗までお問合せください。',
2216
+ 'N0K040037' => 'しばらくご利用になれません。店舗までお問合せください。',
2011
2217
  'N0N010007' => 'お客様の携帯電話ではサービスをご利用いただけません。',
2012
2218
  'N0N010008' => 'お客様の携帯電話ではサービスをご利用いただけません。',
2013
2219
  'N0N010009' => 'お客様の携帯電話ではサービスをご利用いただけません。',
@@ -2024,12 +2230,7 @@ module GMO
2024
2230
  'N0N020023' => '現在このカードはお取扱できません。カード会社にお問合せください。',
2025
2231
  'N0N030038' => '在このカードはお取扱できません。カード会社にお問合せください。',
2026
2232
  'N0N040014' => 'エラーが発生しました。店舗までお問合せください。',
2027
- 'N0K040026' => 'もう一度やり直してください。',
2028
- 'N0K040027' => 'エラーが発生しました。店舗までお問合せください。',
2029
- 'N0K040028' => 'エラーが発生しました。店舗までお問合せください。',
2030
- 'N0K040029' => 'エラーが発生しました。店舗までお問合せください。',
2031
2233
  'N0N040031' => 'しばらくご利用になれません。店舗までお問合せください。',
2032
- 'N0K040037' => 'しばらくご利用になれません。店舗までお問合せください。',
2033
2234
  'N0T000001' => 'もう一度やり直してください。',
2034
2235
  'N0T000002' => 'ご利用可能なカードが設定されていないため、お支払を継続できません。なお、iDでお支払いただくには事前にカードを設定いただく必要があります。',
2035
2236
  'N0T000003' => 'ご利用可能なカードが設定されていないため、お支払を継続できません。なお、iDでお支払いただくには事前にカードを設定いただく必要があります。',
@@ -2040,6 +2241,7 @@ module GMO
2040
2241
  'N0T000008' => 'もう一度やり直してください。',
2041
2242
  'N0T000009' => '現在このカードはお取扱できません。カード会社にお問合せください。',
2042
2243
  'N0T000010' => 'もう一度やり直してください。',
2244
+ 'N10000001' => '該当する取引がありません。',
2043
2245
  'P01010002' => 'APIの認証に失敗しました。',
2044
2246
  'P01010003' => '通信パラメータが不正です。',
2045
2247
  'P01010004' => '通信パラメータが不正です。',
@@ -2342,16 +2544,6 @@ module GMO
2342
2544
  'SB1000003' => 'お客様がソフトバンクまとめて支払い(B)を中止しました。',
2343
2545
  'SB1000004' => 'ソフトバンクまとめて支払い(B)が失敗しました。',
2344
2546
  'SB1000005' => '後続決済センターとの通信に失敗しました。',
2345
- 'WM1000001' => '【決済要求】後続決済センターとの通信パラメータでエラーが発生しました。(メッセージダイジェスト)',
2346
- 'WM1000002' => '【決済要求】後続決済センターで許可されていない接続です。',
2347
- 'WM1000003' => '【決済要求】後続決済センターで決済モジュールの実行に失敗しました。',
2348
- 'WM1000004' => '【決済要求】後続決済センターとの通信パラメータでエラーが発生しました。(受信パラメータ)',
2349
- 'WM1000005' => '【決済要求】後続決済センターとの通信に失敗しました。',
2350
- 'WM1000006' => '【決済結果受信】後続決済センターとの通信パラメータでエラーが発生しました。(受信パラメータ)',
2351
- 'WM1000007' => '【決済結果受信】後続決済センターで二重入金が発生しました。',
2352
- 'WM1000008' => '【決済結果受信】内部エラーが発生しました。(遷移)',
2353
- 'WM1000009' => '【ユーザーキャンセル受信】入金済みの取引に対し、ユーザーの支払操作がキャンセルされた通知を受信しました。',
2354
- 'WM1000010' => '【ユーザーキャンセル受信】内部エラーが発生しました。(遷移)',
2355
2547
  'W0100W001' => 'データ種別不正',
2356
2548
  'W0100W002' => 'UserId/Passwordが存在しない',
2357
2549
  'W0100W003' => '収納処理企業コード/支払いコードが一致しない',
@@ -2394,8 +2586,19 @@ module GMO
2394
2586
  'W0100W773' => '入金処理 SEARCH要求 入金DB OPEN時エラー',
2395
2587
  'W0100W774' => '入金処理 SEARCH要求 入金DB READ時エラー',
2396
2588
  'W0100W775' => '入金処理 SEARCH要求 入金DB UPDATE時エラー',
2589
+ 'WM1000001' => '【決済要求】後続決済センターとの通信パラメータでエラーが発生しました。(メッセージダイジェスト)',
2590
+ 'WM1000002' => '【決済要求】後続決済センターで許可されていない接続です。',
2591
+ 'WM1000003' => '【決済要求】後続決済センターで決済モジュールの実行に失敗しました。',
2592
+ 'WM1000004' => '【決済要求】後続決済センターとの通信パラメータでエラーが発生しました。(受信パラメータ)',
2593
+ 'WM1000005' => '【決済要求】後続決済センターとの通信に失敗しました。',
2594
+ 'WM1000006' => '【決済結果受信】後続決済センターとの通信パラメータでエラーが発生しました。(受信パラメータ)',
2595
+ 'WM1000007' => '【決済結果受信】後続決済センターで二重入金が発生しました。',
2596
+ 'WM1000008' => '【決済結果受信】内部エラーが発生しました。(遷移)',
2597
+ 'WM1000009' => '【ユーザーキャンセル受信】入金済みの取引に対し、ユーザーの支払操作がキャンセルされた通知を受信しました。',
2598
+ 'WM1000010' => '【ユーザーキャンセル受信】内部エラーが発生しました。(遷移)'
2397
2599
  }.freeze
2398
2600
 
2601
+ # https://faq.gmo-pg.com/service/detail.aspx?id=480&a=102
2399
2602
  API_ERROR_MESSAGES = { en: API_ERROR_MESSAGES_EN, ja: API_ERROR_MESSAGES_JA }
2400
2603
  end
2401
2604
  end
@@ -1,3 +1,3 @@
1
1
  module GMO
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gmo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tatsuo Kaniwa
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-07-04 00:00:00.000000000 Z
11
+ date: 2020-10-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rack
@@ -197,7 +197,7 @@ homepage: https://github.com/t-k/gmo-payment-ruby
197
197
  licenses:
198
198
  - MIT
199
199
  metadata: {}
200
- post_install_message:
200
+ post_install_message:
201
201
  rdoc_options:
202
202
  - "--line-numbers"
203
203
  - "--inline-source"
@@ -216,9 +216,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
216
216
  - !ruby/object:Gem::Version
217
217
  version: '0'
218
218
  requirements: []
219
- rubyforge_project:
219
+ rubyforge_project:
220
220
  rubygems_version: 2.7.6
221
- signing_key:
221
+ signing_key:
222
222
  specification_version: 4
223
223
  summary: 'GMO Payment API client: Ruby client library for the GMO Payment Platform.'
224
224
  test_files: []