https://github.com/wavesoftware/eid-generator
Netbeans - Exception ID (EID) Generator
https://github.com/wavesoftware/eid-generator
Last synced: 2 months 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 (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-01T11:40:43.000Z (over 9 years ago)
- Last Synced: 2025-01-19T00:48:08.434Z (4 months 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
============================[](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(""
```