Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wavesoftware/eid-generator
Netbeans - Exception ID (EID) Generator
https://github.com/wavesoftware/eid-generator
Last synced: about 13 hours ago
JSON representation
Netbeans - Exception ID (EID) Generator
- Host: GitHub
- URL: https://github.com/wavesoftware/eid-generator
- Owner: wavesoftware
- License: mit
- Created: 2014-02-18T12:21:46.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-01T11:40:43.000Z (almost 9 years ago)
- Last Synced: 2024-10-19T03:18:27.575Z (about 1 month ago)
- Language: Java
- Size: 51.8 KB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Exception ID (EID) Generator
============================[![Build Status](https://travis-ci.org/wavesoftware/eid-generator.png)](https://travis-ci.org/wavesoftware/eid-generator)
A plugin for Netbeans 8.1
Download
--------http://plugins.netbeans.org/plugin/53137/exception-id-eid-generator
Maven
-----```xml
pl.wavesoftware
netbeans-eid-generator
0.4.0
nbm```
Usage
-----Generates a unique Exception ID, that can be used in Java source code.
In order to use this plugin type `Ctrl+Space` inside empty String literal. This will generate new unique identifier as a Code Completion. That generated EID can be used, for example, to identify your exceptions.
Example
-------This is technical runtime exception, a posible bug. EID Generator plugin can be used to quickly fill unique bug id.
```java
try {
shuldWorkIfNoBugsExists();
} catch (IOException ex) {
throw new EidRuntimeException("20140218:161429", "Something wrong with HDD, permissions?", ex);
}
```To invoke EID code completion:
```java
throw new EidRuntimeException(""
```