Done Category, Product Catalogue, Customer, Vendor, Purchase Invoice Module
This commit is contained in:
11
kifi-api/test_flux.java
Normal file
11
kifi-api/test_flux.java
Normal file
@@ -0,0 +1,11 @@
|
||||
import reactor.core.publisher.Flux;
|
||||
public class test_flux {
|
||||
public static void main(String[] args) {
|
||||
try {
|
||||
Flux.fromIterable(null).subscribe();
|
||||
System.out.println("Did not throw");
|
||||
} catch(Exception e) {
|
||||
System.out.println("Threw: " + e.getClass().getName());
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user