• This project
    • Loading...
  • Sign in

신지원 / LineMusicChatbot

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • LineMusicChatbot
  • node_modules
  • asn1
  • lib
  • ber
  • errors.js
  • 엄성진's avatar
    add description example, add gitignore · 62b0ab7e
    62b0ab7e
    엄성진 authored 2021-05-24 04:10:45 +0900
errors.js 240 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
// Copyright 2011 Mark Cavage <mcavage@gmail.com> All rights reserved.


module.exports = {

  newInvalidAsn1Error: function (msg) {
    var e = new Error();
    e.name = 'InvalidAsn1Error';
    e.message = msg || '';
    return e;
  }

};